diff options
author | 2018-11-21 08:26:01 +0100 | |
---|---|---|
committer | 2018-11-21 08:26:01 +0100 | |
commit | 83f7ca88487933e134c9d29387fd697b6e0b765d (patch) | |
tree | 48e2f992733aeb6f0a4f91b59b21b9fa44ba570f /src | |
parent | f03aae98fd8a275b67a87e528b0684fd08722d92 (diff) |
bus/isa/cga.cpp: fix this regression, too (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/bus/isa/cga.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |