summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2020-02-24 18:36:39 -0600
committer cracyc <cracyc@users.noreply.github.com>2020-02-24 18:36:39 -0600
commit516651c2981cf6dd488c940a2e419b804d2f7309 (patch)
tree55afeeb1f537f16644e373c97385365610791646 /src/mame/drivers
parent1e5c5eac96f97a97b7c34bf44cd80814f2b7ac6d (diff)
peoplepc: cursor (nw)
Diffstat (limited to 'src/mame/drivers')
-rw-r--r--src/mame/drivers/peoplepc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/peoplepc.cpp b/src/mame/drivers/peoplepc.cpp
index 54ee5a62d04..e8879467a0d 100644
--- a/src/mame/drivers/peoplepc.cpp
+++ b/src/mame/drivers/peoplepc.cpp
@@ -133,7 +133,7 @@ MC6845_UPDATE_ROW(peoplepc_state::update_row)
uint8_t chr = m_charram[(data & 0x7f) * 32 + ra];
if(data & 0x1000)
chr ^= 0xff;
- if((data & 0x800) && (ra > 14))
+ if(((data & 0x800) && (ra > 14)) || (i == cursor_x))
chr = 0xff;
for(j = 0; j < 8; j++)
bitmap.pix32(y, (i * 8) + j) = palette[BIT(chr, j)];