alphatpx: fix p2 cursor (nw)

This commit is contained in:
cracyc 2018-02-27 07:42:51 -06:00
parent 2bd73cc977
commit f8ba719d43

View File

@ -906,7 +906,7 @@ uint32_t alphatp_12_state::screen_update(screen_device &screen, bitmap_rgb32 &bi
{
uint8_t code = m_vram[(vramy * 128) + x]; // helwie44 must be 128d is 080h physical display-ram step line
// draw 12 lines of the character
bool cursoren = cursor.contains(x * 8, vramy * 12);
bool cursoren = cursor.contains(x * 8, y * 12);
for (int line = 0; line < 12; line++)
{
uint8_t data = m_gfx[((code & 0x7f) * 16) + line];