Skip to content

Commit 0baa001

Browse files
committed
leter N of straight is add
1 parent 69da4a9 commit 0baa001

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

Fonts/Straight/straight.h

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,16 +162,22 @@ class Straight : public Fonts
162162
}
163163
*/
164164

165-
/*
166-
char **N()
165+
char **N()
167166
{
168167
char **character = getCharGrid();
169168

170-
//Enter the character grid in ROWS X COLS
169+
character[1][0] ='|';
170+
character[1][1] ='\\';
171+
character[1][2] =' ';
172+
character[1][3] ='|';
173+
character[2][0] ='|';
174+
character[2][1] =' ';
175+
character[2][2] ='\\';
176+
character[2][3] ='|';
171177

178+
172179
return character;
173180
}
174-
*/
175181

176182
/*
177183
char **O()

example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ using namespace ascii;
66
int main()
77
{
88
Ascii a = Ascii(straight);
9-
a.print("u");
9+
a.print("N");
1010
return 0;
1111
}

0 commit comments

Comments
 (0)