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 5d18388 commit 17d9458Copy full SHA for 17d9458
Fonts/Straight/straight.h
@@ -416,26 +416,11 @@ class Straight : public Fonts
416
417
char **j()
418
{
419
- char **character = getCharGrid();
+ char **character = getCharGrid(4, 3);
420
421
- for(int i = 0; i < 3; i++)
422
- {
423
- for(int j = 0; j < 3; j++)
424
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
+ character[1][1] = '.';
+ character[2][1] = '|';
+ character[3][1] = '/';
439
440
return character;
441
}
0 commit comments