Skip to content

Commit 8afb069

Browse files
Merge pull request #439 from Shivansh-243/main
added 9 to straight
2 parents 727e114 + d259d41 commit 8afb069

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Fonts/Straight/straight.h

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -720,16 +720,19 @@ class Straight : public Fonts
720720
721721
*/
722722

723-
/*
723+
724724
char **nine()
725725
{
726-
char **character = getCharGrid(ROWS,COLS);
726+
char **character = getCharGrid(3,4);
727727

728-
//Enter the character grid in ROWS X COLS
728+
character[0][1] = character[0][2] = character[1][1] = character[1][2] = character[2][1] = character[2][2] = '_';
729+
character[1][0] = '(';
730+
character[2][3] = '/';
731+
character[1][3] = '\\';
729732

730733
return character;
731734
}
732735

733-
*/
736+
734737
};
735738
#endif

0 commit comments

Comments
 (0)