apple2gs: fix MouseText regression [R. Belmont]

This commit is contained in:
arbee 2021-03-13 20:42:00 -05:00
parent c38b02f72a
commit fe20679f11

View File

@ -1697,9 +1697,9 @@ void a2_video_device::text_updateGS(screen_device &screen, bitmap_ind16 &bitmap,
/* calculate address */
uint32_t const address = start_address + ((((row / 8) & 0x07) << 7) | (((row / 8) & 0x18) * 5 + col));
plot_text_character(bitmap, col * 14, row, 1, aux_page[address],
plot_text_characterGS(bitmap, col * 14, row, 1, aux_page[address],
m_GSfg, m_GSbg);
plot_text_character(bitmap, col * 14 + 7, row, 1, m_ram_ptr[address],
plot_text_characterGS(bitmap, col * 14 + 7, row, 1, m_ram_ptr[address],
m_GSfg, m_GSbg);
}
}
@ -1710,7 +1710,7 @@ void a2_video_device::text_updateGS(screen_device &screen, bitmap_ind16 &bitmap,
/* calculate address */
uint32_t const address = start_address + ((((row / 8) & 0x07) << 7) | (((row / 8) & 0x18) * 5 + col));
plot_text_character(bitmap, col * 14, row, 2, m_ram_ptr[address], m_GSfg, m_GSbg);
plot_text_characterGS(bitmap, col * 14, row, 2, m_ram_ptr[address], m_GSfg, m_GSbg);
}
}
}