Skip to content

Commit

Permalink
Merge pull request #997 from ipratiik/new_digit
Browse files Browse the repository at this point in the history
Added digit <5> to font <amongus>
  • Loading branch information
AnshumanMahato authored Oct 28, 2023
2 parents 38b2164 + ad5014c commit 77e6804
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Fonts/amongus/amongus.h
Original file line number Diff line number Diff line change
Expand Up @@ -778,18 +778,18 @@ character[0][2]=character[0][3]=character[2][4]=character[2][1]=character[3][3]=
return character;
}

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

*/


char **six()
{
Expand Down

0 comments on commit 77e6804

Please sign in to comment.