summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-02-13 09:59:03 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-02-13 09:59:03 -0500
commit29fa02b16ed144af43ad23cce2cbd121ddbf6b25 (patch)
tree450660e4628270c9ae75f0f95490048ce1e60249
parentef5714d1829dc27bb116b3e72ed6767af25d6a67 (diff)
pcd, pcx: Stop conflating cursor blink with character blink (nw)
-rw-r--r--src/mame/video/pcd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/pcd.cpp b/src/mame/video/pcd.cpp
index 9d1e446c387..b70289ae319 100644
--- a/src/mame/video/pcd.cpp
+++ b/src/mame/video/pcd.cpp
@@ -192,7 +192,7 @@ SCN2674_DRAW_CHARACTER_MEMBER(pcd_video_device::display_pixels)
int bgnd = 0, fgnd = 1;
data = m_charram[m_vram[address] * 16 + linecount];
attr = m_vram[address + 1];
- if(cursor && blink)
+ if(cursor)
data = 0xff;
if(ul && (attr & 0x20))
data = 0xff;
@@ -220,7 +220,7 @@ SCN2672_DRAW_CHARACTER_MEMBER(pcx_video_device::display_pixels)
{
uint16_t data = m_charrom[charcode * 16 + linecount + (attrcode & 0x20 ? 4096 : 0)];
- if (cursor && blink)
+ if (cursor)
data = 0x7ff;
else
{