Skip to content

Commit

Permalink
Merge pull request #789 from nk12nidhi12/main
Browse files Browse the repository at this point in the history
character o added to font drpepper
  • Loading branch information
AnshumanMahato authored Oct 24, 2023
2 parents c9438bb + 0c449e6 commit 63dc1d4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -466,17 +466,19 @@ character[3][4] = '/';
*/

/*
char **o()
char **o()
{
char **character = getCharGrid(rows,cols);
char **character = getCharGrid(3,5);

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

*/


/*
char **p()
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 a = Ascii(straight);
a.print("Y");
Ascii a = Ascii(drpepper);
a.print("o");
return 0;
}

0 comments on commit 63dc1d4

Please sign in to comment.