Skip to content

Commit c361549

Browse files
Merge pull request #457 from shlok-2003/453_add_j_to_straight
Added letter j to font straight
2 parents 13ade95 + ccb1187 commit c361549

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

Fonts/Straight/straight.h

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -412,17 +412,16 @@ class Straight : public Fonts
412412
return character;
413413
}
414414

415-
/*
416-
char **j()
417-
{
418-
char **character = getCharGrid(ROWS,COLS);
415+
char **j()
416+
{
417+
char **character = getCharGrid(4, 3);
419418

420-
//Enter the character grid in ROWS X COLS
419+
character[1][1] = '.';
420+
character[2][1] = '|';
421+
character[3][1] = '/';
421422

422-
return character;
423-
}
424-
425-
*/
423+
return character;
424+
}
426425

427426
char **k()
428427
{

0 commit comments

Comments
 (0)