Skip to content

Commit 7286daa

Browse files
authored
Adding char u to font block (#1198)
1 parent 841cf9e commit 7286daa

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

Fonts/block/block.h

+14-4
Original file line numberDiff line numberDiff line change
@@ -961,17 +961,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
961961
return character;
962962
}
963963

964-
/*
964+
965965
vs u()
966966
{
967-
vs character = getCharGrid();
967+
vs character = getCharGrid(11, 20);
968968

969-
//Enter the character grid in ROWS X COLS
969+
character[0] = " .----------------. ";
970+
character[1] = "| .--------------. |";
971+
character[2] = "| | _____ _____ | |";
972+
character[3] = "| ||_ _||_ _|| |";
973+
character[4] = "| | | | | | | |";
974+
character[5] = "| | | ' ' | | |";
975+
character[6] = "| | \\ `--' / | |";
976+
character[7] = "| | `.__.' | |";
977+
character[8] = "| | | |";
978+
character[9] = "| '--------------' |";
979+
character[10]= " '----------------' ";
970980

971981
return character;
972982
}
973983

974-
*/
984+
975985

976986
vs v()
977987
{

0 commit comments

Comments
 (0)