We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23e4cb7 commit 848ed2bCopy full SHA for 848ed2b
Fonts/Straight/straight.h
@@ -174,16 +174,16 @@ class Straight : public Fonts
174
return character;
175
}
176
177
- /*
+
178
char **O()
179
{
180
- char **character = getCharGrid(ROWS,COLS);
181
-
182
- //Enter the character grid in ROWS X COLS
183
+ char **character = getCharGrid(3,4);
+ character[0][1] = character[0][2] = character[2][1] = character[2][2] = '_';
+ character[1][0] = character[2][3] = '/';
+ character[2][0] = character[1][3] = '\\';
184
185
186
- */
187
188
/*
189
char **P()
0 commit comments