Skip to content

Commit bd50d4d

Browse files
committed
letter p have been added in the font straight
1 parent 533e217 commit bd50d4d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Fonts/Straight/straight.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -499,17 +499,18 @@ char **Z()
499499
500500
*/
501501

502-
/*
502+
503503
char **p()
504504
{
505505
char **character = getCharGrid();
506506

507-
//Enter the character grid in ROWS X COLS
508-
507+
character[1][0]=character[2][0]='|';
508+
character[0][1]=character[1][1]='_';
509+
character[1][2]=')';
509510
return character;
510511
}
511512

512-
*/
513+
513514

514515
/*
515516
char **q()

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("k");
9+
a.print("p");
1010
return 0;
1111
}

0 commit comments

Comments
 (0)