Skip to content

Commit 220d9a6

Browse files
author
Amit Kumar
committed
code for u of straight added
1 parent ae5e06c commit 220d9a6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Fonts/Straight/straight.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,17 +543,18 @@ class Straight : public Fonts
543543
544544
*/
545545

546-
/*
547546
char **u()
548547
{
549548
char **character = getCharGrid();
550549

551550
//Enter the character grid in ROWS X COLS
551+
character[2][0] = '|';
552+
character[2][1] = '_';
553+
character[2][2] = '|';
552554

553555
return character;
554556
}
555557

556-
*/
557558

558559

559560
char **v()

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

0 commit comments

Comments
 (0)