From 83f7ca88487933e134c9d29387fd697b6e0b765d Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Wed, 21 Nov 2018 08:26:01 +0100 Subject: bus/isa/cga.cpp: fix this regression, too (nw) --- src/devices/bus/isa/cga.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/bus/isa/cga.cpp b/src/devices/bus/isa/cga.cpp index bc148d4bea8..f5fb8f185d7 100644 --- a/src/devices/bus/isa/cga.cpp +++ b/src/devices/bus/isa/cga.cpp @@ -269,7 +269,7 @@ MACHINE_CONFIG_START(isa8_cga_device::device_add_mconfig) MCFG_PALETTE_ADD("palette", /* CGA_PALETTE_SETS * 16*/ 65536 ) MC6845(config, m_crtc, XTAL(14'318'181)/16); - m_crtc->set_screen(m_screen); + m_crtc->set_screen(nullptr); m_crtc->set_show_border_area(false); m_crtc->set_char_width(8); m_crtc->set_update_row_callback(FUNC(isa8_cga_device::crtc_update_row), this); -- cgit v1.2.3