Skip to content

Commit

Permalink
Add <0>
Browse files Browse the repository at this point in the history
krishna16sharma authored Oct 28, 2023

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Czaki Grzegorz Bokota
1 parent f425ca2 commit 73cfc83
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
@@ -583,17 +583,20 @@ class Drpepper : public Fonts

// Numbers

/*
char **zero()
{
char **character = getCharGrid(rows,cols);
//Enter the character grid in ROWS X COLS
return character;
}

char **zero()
{
char **character = getCharGrid(4,5);
character[0][0] = character[0][4] = character[1][1] = character[1][2] = character[1][3] = character[2][1] = character[2][3] = character[3][1] = character[3][2] = character[3][3] = ' ';
character[0][1] = character[0][2] = character[0][3] = character[3][1] = character[3][2] = character[3][3] = '_';
character[2][2] = '/';
character[1][0] = character[2][0] = character[1][4] = character[2][4] = '|';
character[3][0] = '`';
character[3][4] = '\'';
return character;

}

*/

char **one()
{

0 comments on commit 73cfc83

Please sign in to comment.