Skip to content

Commit

Permalink
Merge pull request #1087 from RITIK-DEVOLOPER/main
Browse files Browse the repository at this point in the history
6 added to drpepper
  • Loading branch information
AnshumanMahato committed Oct 31, 2023
2 parents 4840c50 + d619327 commit 335c658
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ class Drpepper : public Fonts

char **five()
{
char **character = getCharGrid(6,5);
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]='_';

Expand All @@ -686,17 +686,23 @@ class Drpepper : public Fonts



/*

char **six()
{
char **character = getCharGrid(rows,cols);
char **character = getCharGrid(4,5);

//Enter the character grid in ROWS X COLS
character[0][1] = character[0][2] = character[0][3] = character[1][2] = character[1][3] = character[3][1] = character[3][2] = character[3][3] = '_';
character[1][0] = character[2][0] = '|';
character[1][4] = '>';
character[3][0] =96;
character[3][4] = '/';
character[2][2] = '.';
character[2][4] = '\\';

return character;
}

*/


char **seven()
{
Expand Down
2 changes: 1 addition & 1 deletion example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ using namespace ascii;
int main()
{
Ascii font = Ascii(drpepper);
font.print("5");
font.print("6");
return 0;
}

0 comments on commit 335c658

Please sign in to comment.