Skip to content

Commit

Permalink
added x
Browse files Browse the repository at this point in the history
  • Loading branch information
Mystery-glitch committed Oct 24, 2023
1 parent faa01dc commit 9e05650
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions Fonts/banner/banner.h
Original file line number Diff line number Diff line change
Expand Up @@ -504,17 +504,15 @@ class Banner : public Fonts
return character;
}

/*
char **x()
{
char **character = getCharGrid(ROWS,COLS);
char **character = getCharGrid(7,4);

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

return character;
}

*/

/*
char **y()
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(drpepper);
a.print("X");
Ascii a = Ascii(banner);
a.print("x");
return 0;
}

0 comments on commit 9e05650

Please sign in to comment.