Cover page: Characters 9 and 10 are supposed to be invisible

This commit is contained in:
Ilari Liusvaara 2013-01-08 12:11:27 +02:00
parent 513161f296
commit ae0ecbada0

View file

@ -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++;
}