Skip to content

Commit 315b5a6

Browse files
Merge pull request #278 from miragearush/main
added L in straight
2 parents d9f4927 + 94d10bb commit 315b5a6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Fonts/Straight/straight.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,16 +136,16 @@ class Straight : public Fonts
136136
}
137137
*/
138138

139-
/*
140-
char **L()
139+
char **L()
141140
{
142141
char **character = getCharGrid();
143142

144143
//Enter the character grid in ROWS X COLS
144+
character[1][0] = character[2][0] = '|';
145+
character[2][1] = character[2][2] = '_';
145146

146147
return character;
147148
}
148-
*/
149149

150150
/*
151151
char **M()

example.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace ascii;
55

66
int main()
77
{
8-
Ascii a = Ascii(starwar);
9-
a.print("X");
8+
Ascii a = Ascii(straight);
9+
a.print("L");
1010
return 0;
1111
}

0 commit comments

Comments
 (0)