Skip to content

Commit

Permalink
fix escape sequence problems for A&B in block
Browse files Browse the repository at this point in the history
  • Loading branch information
codewithnick committed Oct 11, 2024
1 parent 4aa10da commit 8dc66fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Fonts/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -547,10 +547,10 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
character[0] = " .----------------. ";
character[1] = "| .--------------. |";
character[2] = "| | __ | |";
character[3] = "| | / \ | |";
character[4] = "| | / /\ \ | |";
character[5] = "| | / /__\ \ | |";
character[6] = "| | _/ / \ \_ | |";
character[3] = "| | / \\ | |";
character[4] = "| | / /\\ \\ | |";
character[5] = "| | / /__\\ \\ | |";
character[6] = "| | _/ / \\ \\_ | |";
character[7] = "| ||____| |____|| |";
character[8] = "| | | |";
character[9] = "| '--------------' |";
Expand All @@ -568,7 +568,7 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
character[0] = " .----------------. ";
character[1] = "| .--------------. |";
character[2] = "| | ______ | |";
character[3] = "| | |_ _ \ | |";
character[3] = "| | |_ _ \\ | |";
character[4] = "| | | |_) | | |";
character[5] = "| | | __'. | |";
character[6] = "| | _| |__) | | |";
Expand Down
4 changes: 2 additions & 2 deletions example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ using namespace ascii;

int main()
{
Ascii font = Ascii(drpepper);
font.print("f");
Ascii font = Ascii(block);
font.print("a");
return 0;
}

0 comments on commit 8dc66fe

Please sign in to comment.