Skip to content

Commit

Permalink
Merge pull request #434 from Stunner33/main
Browse files Browse the repository at this point in the history
Added "2" Number to Straight
  • Loading branch information
AnshumanMahato authored Oct 18, 2023
2 parents 8afb069 + 66d7c7b commit c3c3943
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Fonts/Straight/straight.h
Original file line number Diff line number Diff line change
Expand Up @@ -636,17 +636,20 @@ class Straight : public Fonts
return character;
}

/*

char **two()
{
char **character = getCharGrid(ROWS,COLS);
char **character = getCharGrid(3,4);

//Enter the character grid in ROWS X COLS
character[0][1] = character[0][2]= character[2][2]= character[2][3]= character[1][2] ='_';
character[1][3] =')';
character[2][1] = '/';

return character;
}

*/


/*
char **three()
Expand Down

0 comments on commit c3c3943

Please sign in to comment.