Skip to content

Commit bec7f1e

Browse files
committed
Added l in straight
1 parent 3f8d20c commit bec7f1e

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Fonts/Straight/straight.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -434,18 +434,17 @@ class Straight : public Fonts
434434
435435
*/
436436

437-
/*
438-
char **l()
437+
char **l()
439438
{
440439
char **character = getCharGrid();
441440

442441
//Enter the character grid in ROWS X COLS
442+
character[1][0]='|';
443+
character[2][0]='|';
443444

444445
return character;
445446
}
446447

447-
*/
448-
449448
/*
450449
char **m()
451450
{

example.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace ascii;
55

66
int main()
77
{
8-
Ascii a = Ascii(banner);
9-
a.print("O");
8+
Ascii a = Ascii(straight);
9+
a.print("l");
1010
return 0;
1111
}

0 commit comments

Comments
 (0)