Skip to content

Commit 81bb762

Browse files
committed
letter t have been added in the font straight
1 parent 67df9c4 commit 81bb762

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Fonts/Straight/straight.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -528,17 +528,18 @@ class Straight : public Fonts
528528
529529
*/
530530

531-
/*
531+
532532
char **t()
533533
{
534534
char **character = getCharGrid(ROWS,COLS);
535535

536-
//Enter the character grid in ROWS X COLS
536+
character[1][0]=character[2][0]='|';
537+
character[1][1]=character[2][1]='_';
537538

538539
return character;
539540
}
540541

541-
*/
542+
542543

543544
char **u()
544545
{

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(boomer);
9-
a.print("AMWagjN");
8+
Ascii a = Ascii(straight);
9+
a.print("t");
1010
return 0;
1111
}

0 commit comments

Comments
 (0)