apple2video: fix monochrome DHGR rendering for RGB mode (GitHub #10975) [R. Belmont]

This commit is contained in:
arbee 2023-03-22 20:58:44 -04:00
parent a22e09f930
commit a85f5932fd

2
src/mame/apple/apple2video.cpp Normal file → Executable file
View File

@ -687,7 +687,7 @@ void a2_video_device::dhgr_update(screen_device &screen, bitmap_ind16 &bitmap, c
words[col] = (vaux_row[col] & 0x7f) + ((vram_row[col] & 0x7f) << 7);
}
if (rgbmode < 0)
if (rgbmode == 0)
{
render_line(p, words, startcol, stopcol, monochrome, true);
}