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 13ade95 + ccb1187 commit c361549Copy full SHA for c361549
Fonts/Straight/straight.h
@@ -412,17 +412,16 @@ class Straight : public Fonts
412
return character;
413
}
414
415
- /*
416
- char **j()
417
- {
418
- char **character = getCharGrid(ROWS,COLS);
+ char **j()
+ {
+ char **character = getCharGrid(4, 3);
419
420
- //Enter the character grid in ROWS X COLS
+ character[1][1] = '.';
+ character[2][1] = '|';
421
+ character[3][1] = '/';
422
- return character;
423
- }
424
-
425
- */
+ return character;
+ }
426
427
char **k()
428
{
0 commit comments