Skip to content

Commit

Permalink
Merge pull request #763 from rishavr920/main
Browse files Browse the repository at this point in the history
added 1 in font 'boomer'
  • Loading branch information
AnshumanMahato authored Oct 24, 2023
2 parents 39545ed + ffca8bf commit b21060d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
16 changes: 10 additions & 6 deletions Fonts/Boomer/boomer.h
Original file line number Diff line number Diff line change
Expand Up @@ -687,17 +687,21 @@ class Boomer : public Fonts
return character;
}

/*
char **one()
{
char **character = getCharGrid(ROWS,COLS);
//Enter the character grid in ROWS X COLS
char **character = getCharGrid(6,7);

character[0][1] = character[0][2] = character[0][3] =character[4][0]=character[4][5]=character[5][1]=character[5][2]=character[5][3]=character[5][4]='_';
character[1][0]=character[5][5]='/';
character[2][0]='`';
character[2][1]=character[3][1]=character[4][1]='|';
character[1][4]=character[2][4]=character[3][4]=character[4][4]='|';
character[5][0]='\\';

return character;
}

*/


char **two()
{
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(boomer);
a.print("1");
return 0;
}

0 comments on commit b21060d

Please sign in to comment.