mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
trs80m3: fixed a graphics error
This commit is contained in:
parent
7969c5999b
commit
a99073160e
@ -45,7 +45,7 @@ uint32_t trs80m3_state::screen_update_trs80m3(screen_device &screen, bitmap_ind1
|
||||
uint8_t rows = BIT(m_mode, 2) ? 24 : 16;
|
||||
uint8_t lines = BIT(m_mode, 2) ? 10 : 12;
|
||||
uint8_t s_cols = cols;
|
||||
uint8_t mask = BIT(m_mode, 5) ? 0xff : 0xbf; /* Select Japanese or extended chars */
|
||||
uint8_t mask = BIT(m_mode, 5) ? 0xbf : 0xff; /* Select Japanese or extended chars */
|
||||
|
||||
if (BIT(m_mode, 0))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user