Skip to content

Commit 30f28b6

Browse files
Merge pull request #425 from gaurav12devloper/main
Added O to Straight
2 parents fdfee1d + 848ed2b commit 30f28b6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Fonts/Straight/straight.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,16 +174,16 @@ class Straight : public Fonts
174174
return character;
175175
}
176176

177-
/*
177+
178178
char **O()
179179
{
180-
char **character = getCharGrid(ROWS,COLS);
181-
182-
//Enter the character grid in ROWS X COLS
183-
180+
char **character = getCharGrid(3,4);
181+
character[0][1] = character[0][2] = character[2][1] = character[2][2] = '_';
182+
character[1][0] = character[2][3] = '/';
183+
character[2][0] = character[1][3] = '\\';
184184
return character;
185185
}
186-
*/
186+
187187

188188
/*
189189
char **P()

0 commit comments

Comments
 (0)