Skip to content

Commit

Permalink
Merge pull request #439 from Shivansh-243/main
Browse files Browse the repository at this point in the history
added 9 to straight
  • Loading branch information
AnshumanMahato authored Oct 18, 2023
2 parents 727e114 + d259d41 commit 8afb069
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Fonts/Straight/straight.h
Original file line number Diff line number Diff line change
Expand Up @@ -720,16 +720,19 @@ class Straight : public Fonts
*/

/*

char **nine()
{
char **character = getCharGrid(ROWS,COLS);
char **character = getCharGrid(3,4);

//Enter the character grid in ROWS X COLS
character[0][1] = character[0][2] = character[1][1] = character[1][2] = character[2][1] = character[2][2] = '_';
character[1][0] = '(';
character[2][3] = '/';
character[1][3] = '\\';

return character;
}

*/

};
#endif

0 comments on commit 8afb069

Please sign in to comment.