Skip to content

Commit 2161c60

Browse files
committed
added character k in the font straight
1 parent 5f68165 commit 2161c60

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

Fonts/Straight/straight.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,17 +439,18 @@ char **Z()
439439
440440
*/
441441

442-
/*
442+
443443
char **k()
444444
{
445445
char **character = getCharGrid();
446446

447-
//Enter the character grid in ROWS X COLS
447+
character[1][0]=character[2][0]='|';
448+
character[2][1]='(';
448449

449450
return character;
450451
}
451452

452-
*/
453+
453454

454455
char **l()
455456
{

example.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ using namespace ascii;
66
int main()
77
{
88
Ascii a = Ascii(straight);
9-
<<<<<<< HEAD
10-
a.print("b");
11-
=======
12-
a.print("Z");
13-
>>>>>>> 466139e72321fe1b9389e6b9ae81d8abce3f5354
9+
a.print("k");
1410
return 0;
1511
}

0 commit comments

Comments
 (0)