summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Nigel Barnes <Pernod70@users.noreply.github.com>2020-06-21 14:56:32 +0100
committer Nigel Barnes <Pernod70@users.noreply.github.com>2020-06-21 14:57:50 +0100
commit9fb2ec21aae4aed8a4aef82addcfc96328a61904 (patch)
tree751f7e1410fc8d41e1ab08772891a6019785e03b
parent696b130739e8301a490e121579c391456f9dce2b (diff)
bbc.cpp: Fixed video regression in modes 3 and 6 (nw)
-rw-r--r--src/mame/video/bbc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/bbc.cpp b/src/mame/video/bbc.cpp
index 4c49cd58e8f..d599169000a 100644
--- a/src/mame/video/bbc.cpp
+++ b/src/mame/video/bbc.cpp
@@ -320,7 +320,7 @@ MC6845_UPDATE_ROW( bbc_state::crtc_update_row )
for (int pixelno = 0; pixelno < m_pixels_per_byte; pixelno++)
{
- int col = !(ra & 0x08) ? m_vula_palette_lookup[m_pixel_bits[data]] : 7;
+ int col = !(ra & 0x08) ? m_vula_palette_lookup[m_pixel_bits[data]] : 0;
col ^= ((cursor_x != -1 && x_pos >= cursor_x && x_pos < (cursor_x + m_cursor_size)) ? 7 : 0);