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.
1 parent 8afb069 commit 5d18388Copy full SHA for 5d18388
Fonts/Straight/straight.h
@@ -414,17 +414,31 @@ class Straight : public Fonts
414
return character;
415
}
416
417
- /*
418
- char **j()
419
- {
420
- char **character = getCharGrid(ROWS,COLS);
421
-
422
- //Enter the character grid in ROWS X COLS
+ char **j()
+ {
+ char **character = getCharGrid();
423
424
- return character;
+ for(int i = 0; i < 3; i++)
+ for(int j = 0; j < 3; j++)
425
+ if(i == 0 && j == 1)
426
427
+ character[i][j] = '.';
428
+ }
429
+ if (i == 1 && j == 1)
430
431
+ character[i][j] = '|';
432
433
+ if (i == 2 && j == 1)
434
435
+ character[i][j] = '/';
436
437
438
439
- */
440
+ return character;
441
442
443
char **k()
444
{
0 commit comments