summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2018-02-27 07:42:51 -0600
committer cracyc <cracyc@users.noreply.github.com>2018-02-27 07:42:51 -0600
commitf8ba719d43ef336dd8b2513b9dd33413c373e252 (patch)
treed7bc7e8b5cee32eeb5eabf71453e16aca7ea32cf
parent2bd73cc9775901c47bf73e237e501601f5ce2249 (diff)
alphatpx: fix p2 cursor (nw)
-rw-r--r--src/mame/drivers/alphatpx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/alphatpx.cpp b/src/mame/drivers/alphatpx.cpp
index 6d94aa4ff73..cf5f57eae99 100644
--- a/src/mame/drivers/alphatpx.cpp
+++ b/src/mame/drivers/alphatpx.cpp
@@ -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];