diff options
author | 2020-06-21 14:56:32 +0100 | |
---|---|---|
committer | 2020-06-22 00:08:50 +1000 | |
commit | cd9f46e8a9f15e93808de5fe6b5a1ccb1e6d4fe0 (patch) | |
tree | 7717dff19d916ecde8595bc417b45e4993c2fa7e | |
parent | 8cffc79ea5cc776dd3bb53dbb9e87fc3e46087d7 (diff) |
bbc.cpp: Fixed video regression in modes 3 and 6 (nw)
-rw-r--r-- | src/mame/video/bbc.cpp | 2 |
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); |