Cover page: Characters 9 and 10 are supposed to be invisible
This commit is contained in:
parent
513161f296
commit
ae0ecbada0
1 changed files with 2 additions and 1 deletions
|
@ -83,7 +83,8 @@ void cover_render_string(void* fb, unsigned x, unsigned y, const std::string& st
|
|||
spos++;
|
||||
continue;
|
||||
}
|
||||
cover_render_character(fb, x, y, u, fg, bg, w, h, istride, pstride);
|
||||
if(u != 9 && u != 10)
|
||||
cover_render_character(fb, x, y, u, fg, bg, w, h, istride, pstride);
|
||||
cover_next_position(u, x, y);
|
||||
spos++;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue