mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-01-07 22:47:40 +00: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