mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-02-04 08:55:21 -05:00
Fixed logic error in unused code module (#1049)
This commit is contained in:
parent
6dbc8460b4
commit
63dd85cbfc
@ -178,7 +178,7 @@ void AboutView::draw_demoglyph(ui::Point p, char ch, ui::Color* pal) {
|
|||||||
int16_t lbx, il;
|
int16_t lbx, il;
|
||||||
|
|
||||||
// Map ASCII to font bitmap
|
// Map ASCII to font bitmap
|
||||||
if ((ch >= 32) || (ch < 96))
|
if ((ch >= 32) && (ch < 96))
|
||||||
che = char_map[ch - 32];
|
che = char_map[ch - 32];
|
||||||
else
|
else
|
||||||
che = 0xFF;
|
che = 0xFF;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user