From cd9f46e8a9f15e93808de5fe6b5a1ccb1e6d4fe0 Mon Sep 17 00:00:00 2001 From: Nigel Barnes Date: Sun, 21 Jun 2020 14:56:32 +0100 Subject: bbc.cpp: Fixed video regression in modes 3 and 6 (nw) --- src/mame/video/bbc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3