Skip to content

Commit 43b55e4

Browse files
authored
M to font block (#1158)
* feat/add-m-to-font-block * feat/add-m-to-font-block
1 parent 0b3891f commit 43b55e4

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
@@ -767,17 +767,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
767767
768768
*/
769769

770-
/*
770+
771771
vs m()
772772
{
773-
vs character = getCharGrid();
773+
vs character = getCharGrid(11, 20);
774774

775-
//Enter the character grid in ROWS X COLS
775+
character[0] = " .----------------. ";
776+
character[1] = "| .--------------. |";
777+
character[2] = "| | ____ ____ | |";
778+
character[3] = "| ||_ \\ / _|| |";
779+
character[4] = "| | | \\/ | | |";
780+
character[5] = "| | | |\\ /| | | |";
781+
character[6] = "| | _| |_\\/_| |_ | |";
782+
character[7] = "| ||_____||_____|| |";
783+
character[8] = "| | | |";
784+
character[9] = "| '--------------' |";
785+
character[10]= " '----------------' ";
776786

777787
return character;
778788
}
779789

780-
*/
790+
781791

782792

783793
vs n()

0 commit comments

Comments
 (0)