Skip to content

Commit

Permalink
Merge pull request #1085 from rishavr920/main
Browse files Browse the repository at this point in the history
added m in drepper
  • Loading branch information
AnshumanMahato committed Oct 31, 2023
2 parents ba125be + 0c761fa commit e733d26
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -446,17 +446,21 @@ class Drpepper : public Fonts
return character;
}

/*

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

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

return character;
}

*/


char **n()
{
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("w");
font.print("m");
return 0;
}

0 comments on commit e733d26

Please sign in to comment.