Skip to content

Commit 6464c71

Browse files
committed
changes
1 parent 82d8b63 commit 6464c71

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Fonts/Straight/straight.h

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,16 +114,19 @@ class Straight : public Fonts
114114
return character;
115115
}
116116

117-
/*
117+
118118
char **J()
119119
{
120120
char **character = getCharGrid(ROWS,COLS);
121-
122-
//Enter the character grid in ROWS X COLS
121+
122+
character[0][0] = character[0][1] = ' ';
123+
character[1][0] = character[1][1] = '_';
124+
character[1][2] = ')';
125+
character[0][2] ='|';
123126

124127
return character;
125128
}
126-
*/
129+
127130

128131
/*
129132
char **K()

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(boomer);
9-
a.print("l");
8+
Ascii a = Ascii(straight);
9+
a.print("J");
1010
return 0;
1111
}

0 commit comments

Comments
 (0)