Skip to content

Commit

Permalink
Merge pull request #1047 from Manas-Pathak/main
Browse files Browse the repository at this point in the history
Added N to font drpepper #634
  • Loading branch information
AnshumanMahato authored Oct 30, 2023
2 parents 4c6c106 + 109e1ec commit 402232d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,19 @@ class Drpepper : public Fonts
return character;
}

/*

char **N()
{
char **character = getCharGrid(rows,cols);
char **character = getCharGrid(4,7);

//Enter the character grid in ROWS X COLS
character[0][0] = character[0][3] = character[0][6] = character[1][1] = character[1][2] = character[1][4] = character[1][5] = character[2][1] = character[2][2] = character[2][3] = character[2][4] = character[2][5] = ' ';
character[0][1] = character[0][3] = character[3][1] = character[3][3] = '_';
character[1][0] = character[2][0] = character[3][0] =character[1][4]=character[2][4]=character[3][4] = '|';
character[1][2] = character[3][2] = '\\';
return character;
}
*/


/*
char **O()
Expand Down
4 changes: 2 additions & 2 deletions example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ using namespace ascii;

int main()
{
Ascii font = Ascii(amongus);
font.print("89");
Ascii font = Ascii(block);
font.print("Y");
return 0;
}

0 comments on commit 402232d

Please sign in to comment.