Flashing Text Fix

This commit is contained in:
David Kuder 2023-05-02 19:27:52 -04:00
parent f67a365804
commit 4871a12993
1 changed files with 2 additions and 2 deletions

View File

@ -42,9 +42,9 @@ static inline uint_fast8_t char_text_bits(uint_fast8_t ch, uint_fast8_t glyph_li
ch = (ch & 0x3f) | 0x80;
}
bits = character_rom[((uint_fast16_t)ch << 3) | glyph_line] & 0x7f;
bits = character_rom[((uint_fast16_t)ch << 3) | glyph_line];
return bits ^ invert;
return (bits ^ invert) & 0x7f;
}
void DELAYED_COPY_CODE(render_text)() {