From c2c22491ef063c533f9c915228aa18fe4c06feaf Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Tue, 29 Sep 2020 15:36:19 +0200 Subject: video/apple2e.cpp: initialized variable which caused the drivers to start sometimes in color and sometimes in monochrome mode, now that the framework doesn't initialize everything by default --- src/mame/video/apple2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mame/video/apple2.cpp b/src/mame/video/apple2.cpp index b69561e2331..65c50741d7f 100644 --- a/src/mame/video/apple2.cpp +++ b/src/mame/video/apple2.cpp @@ -138,6 +138,7 @@ void a2_video_device::device_reset() m_monohgr = false; m_newvideo = 0x01; m_rgbmode = 3; // default to color DHGR + m_monochrome = 0; // TODO: never set, but if left uninitialized could cause the emulation to start in monochrome by accident. Default to color for now } WRITE_LINE_MEMBER(a2_video_device::txt_w) -- cgit v1.2.3