Skip to content

Commit

Permalink
added J to drpepper
Browse files Browse the repository at this point in the history
  • Loading branch information
sakshidewangan authored Oct 25, 2023
1 parent 6890464 commit f06e04d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,13 @@ character[1][4] = character[2][3] = character[3][4] = '>';
return character;
}

char **J()
char **J()
{
char **character = getCharGrid(6, 10);
char **character = getCharGrid(4,4);
character[1][1] = character[1][3] = character[2][1] = character[2][3] = '|';
character[2][0] = character[3][1] = character[3][2] = '_';
character[2][0] = character[3][1] = character[3][2] = character[0][2] = '_';
character[3][0] = '\\';
character[3][3] = '/';
character[3][4] = character[3][5] = character[3][6] = character[3][7] = character[3][8] = ' ';
character[3][9] = ' ';
return character;
}

Expand Down

0 comments on commit f06e04d

Please sign in to comment.