Skip to content

Commit fcc3218

Browse files
authored
[Feature]:-adding w to font block (#1178)
1 parent 2f1f9d1 commit fcc3218

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

Diff for: Fonts/block/block.h

+14-4
Original file line numberDiff line numberDiff line change
@@ -987,17 +987,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
987987
988988
*/
989989

990-
/*
990+
991991
vs w()
992992
{
993-
vs character = getCharGrid();
993+
vs character = getCharGrid(11, 20);
994994

995-
//Enter the character grid in ROWS X COLS
995+
character[0] = " .----------------. ";
996+
character[1] = "| .--------------. |";
997+
character[2] = "| | _____ _____ | |";
998+
character[3] = "| ||_ _||_ _|| |";
999+
character[4] = "| | | | /\\ | | | |";
1000+
character[5] = "| | | |/ \\| | | |";
1001+
character[6] = "| | | /\\ | | |";
1002+
character[7] = "| | |__/ \\__| | |";
1003+
character[8] = "| | | |";
1004+
character[9] = "| '--------------' |";
1005+
character[10] = " '----------------' ";
9961006

9971007
return character;
9981008
}
9991009

1000-
*/
1010+
10011011

10021012

10031013
vs x()

0 commit comments

Comments
 (0)