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 727e114 + d259d41 commit 8afb069Copy full SHA for 8afb069
Fonts/Straight/straight.h
@@ -720,16 +720,19 @@ class Straight : public Fonts
720
721
*/
722
723
- /*
+
724
char **nine()
725
{
726
- char **character = getCharGrid(ROWS,COLS);
+ char **character = getCharGrid(3,4);
727
728
- //Enter the character grid in ROWS X COLS
+ 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] = '\\';
732
733
return character;
734
}
735
- */
736
737
};
738
#endif
0 commit comments