Skip to content

Commit

Permalink
Merge pull request #939 from ipratiik/new_character
Browse files Browse the repository at this point in the history
Added character <c> to font <drpepper>
  • Loading branch information
AnshumanMahato authored Oct 28, 2023
2 parents 2e8324c + 126806a commit efee0ec
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -340,16 +340,18 @@ character[3][4] = '/';



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

return character;
}
*/

/*
char **d()
Expand Down

0 comments on commit efee0ec

Please sign in to comment.