We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fdf47d4 + d7fa748 commit 6a626a0Copy full SHA for 6a626a0
Fonts/Straight/straight.h
@@ -655,17 +655,15 @@ class Straight : public Fonts
655
656
*/
657
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
- }
+ char **four()
+ {
+ char **character = getCharGrid(3, 4);
+ character[0][0] = character[0][1] = character[0][2] = character[0][3] = ' ';
+ character[1][1] = character[1][2] = '_';
+ character[1][0] = character[1][3] = character[2][3] = '|';
667
668
- */
+ return character;
+ }
669
670
/*
671
char **five()
0 commit comments