summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bbc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bbc.cpp')
-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);