From a85f5932fdd2a35237ae81da6415aa5e78dc2886 Mon Sep 17 00:00:00 2001 From: arbee Date: Wed, 22 Mar 2023 20:58:44 -0400 Subject: apple2video: fix monochrome DHGR rendering for RGB mode (GitHub #10975) [R. Belmont] --- src/mame/apple/apple2video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 src/mame/apple/apple2video.cpp diff --git a/src/mame/apple/apple2video.cpp b/src/mame/apple/apple2video.cpp old mode 100644 new mode 100755 index b8518d648a3..01bdb0c2ce3 --- a/src/mame/apple/apple2video.cpp +++ b/src/mame/apple/apple2video.cpp @@ -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); } -- cgit v1.2.3