mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
apple2video: fix monochrome DHGR rendering for RGB mode (GitHub #10975) [R. Belmont]
This commit is contained in:
parent
a22e09f930
commit
a85f5932fd
2
src/mame/apple/apple2video.cpp
Normal file → Executable file
2
src/mame/apple/apple2video.cpp
Normal file → Executable 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);
|
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);
|
render_line(p, words, startcol, stopcol, monochrome, true);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user