mirror of
https://github.com/V2RetroComputing/analog-firmware.git
synced 2025-08-05 16:24:59 +00:00
Flashing Text Fix
This commit is contained in:
@@ -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)() {
|
||||
|
Reference in New Issue
Block a user