Skip to content

Commit

Permalink
Merge pull request #510 from Anshun352/main
Browse files Browse the repository at this point in the history
Character C added to the straight...
  • Loading branch information
vkumar8192449 authored Oct 20, 2023
2 parents ef574a7 + 31bae98 commit 3730f35
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Fonts/Straight/straight.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,18 @@ class Straight : public Fonts
return character;
}

/*

char **C()
{
char **character = getCharGrid(ROWS,COLS);
//Enter the character grid in ROWS X COLS
char **character = getCharGrid(rows, cols);
character[0][0] = character[1][1] = character[1][2]= character[1][3] = character[0][3]= character[2][3] = ' ';
character[0][1] = character[0][2] ='_';
character[1][0] = '/';
character[2][0] = '\\';
character[2][1] = character[2][2] = '_';
return character;
}
*/


/*
char **D()
Expand Down

0 comments on commit 3730f35

Please sign in to comment.