mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
bbc.cpp: Fixed video regression in modes 3 and 6 (nw)
This commit is contained in:
parent
8cffc79ea5
commit
cd9f46e8a9
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user