bbc.cpp: Fixed video regression in modes 3 and 6 (nw)

This commit is contained in:
Nigel Barnes 2020-06-21 14:56:32 +01:00 committed by Vas Crabb
parent 8cffc79ea5
commit cd9f46e8a9

View File

@ -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);