diff options
| author | 2023-03-22 21:06:19 -0400 | |
|---|---|---|
| committer | 2023-03-22 21:06:19 -0400 | |
| commit | 2ea68c9c44533679b1f538482828dfe59a42428b (patch) | |
| tree | 330248aede25527b3e7a979ea4cda293367054d6 /src | |
| parent | a85f5932fdd2a35237ae81da6415aa5e78dc2886 (diff) | |
apple2video: Better fix for the previous issue. Now also covers IIgs mono DHR and B&W monitor modes. [R. Belmont]
Diffstat (limited to 'src')
| -rwxr-xr-x | src/mame/apple/apple2video.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/apple/apple2video.cpp b/src/mame/apple/apple2video.cpp index 01bdb0c2ce3..b37e555d4a1 100755 --- 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 (monochrome) { render_line(p, words, startcol, stopcol, monochrome, true); } |
