Skip to content

Commit

Permalink
Merge pull request #1106 from mohit-8692/main
Browse files Browse the repository at this point in the history
update character h in amongus.h
  • Loading branch information
AnshumanMahato authored Nov 13, 2023
2 parents 9d52091 + 15123fd commit e3ccb2b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Fonts/amongus/amongus.h
Original file line number Diff line number Diff line change
Expand Up @@ -430,16 +430,20 @@ class Amongus : public Fonts
}


/*

char **h()
{
char **character = getCharGrid(ROWS,COLS);
char **character = getCharGrid(4,7);

//Enter the character grid in ROWS X COLS

character[0][1] = character[0][5]= character[1][3]= character[2][3]=character[3][5] = character[3][1]='_';
character[1][0] = character[1][4] =character[3][0] = character[3][4] = character[2][5]='(';
character[1][6] = character[1][2] = character[3][2] = character[3][6] = character[2][1] = ')';

return character;
}
*/

char **i()
{
char **character = getCharGrid(4,6);
Expand Down

0 comments on commit e3ccb2b

Please sign in to comment.