Skip to content

Commit 6a626a0

Browse files
Merge pull request #450 from Shivansh-243/forFour
added 4 in straight
2 parents fdf47d4 + d7fa748 commit 6a626a0

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

Fonts/Straight/straight.h

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -655,17 +655,15 @@ class Straight : public Fonts
655655
656656
*/
657657

658-
/*
659-
char **four()
660-
{
661-
char **character = getCharGrid(ROWS,COLS);
662-
663-
//Enter the character grid in ROWS X COLS
664-
665-
return character;
666-
}
658+
char **four()
659+
{
660+
char **character = getCharGrid(3, 4);
661+
character[0][0] = character[0][1] = character[0][2] = character[0][3] = ' ';
662+
character[1][1] = character[1][2] = '_';
663+
character[1][0] = character[1][3] = character[2][3] = '|';
667664

668-
*/
665+
return character;
666+
}
669667

670668
/*
671669
char **five()

0 commit comments

Comments
 (0)