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.
2 parents d9f4927 + 94d10bb commit 315b5a6Copy full SHA for 315b5a6
Fonts/Straight/straight.h
@@ -136,16 +136,16 @@ class Straight : public Fonts
136
}
137
*/
138
139
- /*
140
- char **L()
+ char **L()
141
{
142
char **character = getCharGrid();
143
144
//Enter the character grid in ROWS X COLS
+ character[1][0] = character[2][0] = '|';
145
+ character[2][1] = character[2][2] = '_';
146
147
return character;
148
- */
149
150
/*
151
char **M()
example.cpp
@@ -5,7 +5,7 @@ using namespace ascii;
5
6
int main()
7
8
- Ascii a = Ascii(starwar);
9
- a.print("X");
+ Ascii a = Ascii(straight);
+ a.print("L");
10
return 0;
11
0 commit comments