Skip to content

Commit

Permalink
added Y again
Browse files Browse the repository at this point in the history
  • Loading branch information
Shivansh-243 committed Oct 27, 2023
1 parent 0e326bc commit fffcac6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,16 +287,18 @@ character[3][3] = '/';
return character;
}

/*
char **Y()
char **Y()
{
char **character = getCharGrid(rows,cols);
char **character = getCharGrid(4, 5);
//Enter the character grid in ROWS X COLS
character[0][1] = character[0][3] = character[3][2] = '_';
character[1][0] = character[1][2] = character[1][4] = character[3][1] = character[3][3] = '|';
character[2][4] = '/';
character[2][0] = '\\';

return character;
}
*/


char **Z()
Expand Down

0 comments on commit fffcac6

Please sign in to comment.