Skip to content

Commit

Permalink
added 'y' to amongus (#1115)
Browse files Browse the repository at this point in the history
  • Loading branch information
prungoose authored Oct 3, 2024
1 parent e9a9cb2 commit 32ba177
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions Fonts/amongus/amongus.h
Original file line number Diff line number Diff line change
Expand Up @@ -633,17 +633,21 @@ class Amongus : public Fonts
return character;
}

/*
char **y()
{
char **character = getCharGrid(ROWS,COLS);

//Enter the character grid in ROWS X COLS
char **y()
{
char **character = getCharGrid(4,6);

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

return character;
}

return character;
}

*/

char **z()
{
Expand Down

0 comments on commit 32ba177

Please sign in to comment.