Skip to content

Commit

Permalink
Fix: special chars not displaying
Browse files Browse the repository at this point in the history
  • Loading branch information
d0k3 committed Jan 15, 2017
1 parent fefd78a commit 4c7c129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/draw.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ int DrawString(u8* screen, const char *str, int x, int y, int color, int bgcolor
{
_x = x;
}
else if (isprint(str[i+len]))
else
{
DrawCharacter(screen, str[i+len], _x, _y, color, bgcolor);
_x+= FONT_WIDTH;
Expand Down

0 comments on commit 4c7c129

Please sign in to comment.