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

This commit is contained in:
Ivan Vangelista 2020-09-29 15:36:19 +02:00 committed by GitHub
parent 9c36ee3d9d
commit c2c22491ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)