Skip to content

Commit 12bb699

Browse files
Merge pull request #243 from prajjawal007/main
Added U in straight font
2 parents a5165e5 + cce14f2 commit 12bb699

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Fonts/Straight/straight.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,16 +237,19 @@ class Straight : public Fonts
237237
return character;
238238
}
239239

240-
/*
240+
241241
char **U()
242242
{
243243
char **character = getCharGrid();
244244

245245
//Enter the character grid in ROWS X COLS
246+
character[1][0] = character[2][3] = '/';
247+
character[1][3] = character[2][0] = '\\';
248+
character[2][1] = character[2][2] = '_';
246249

247250
return character;
248251
}
249-
*/
252+
250253

251254
char **V()
252255
{

0 commit comments

Comments
 (0)