diff options
| author | 2022-10-28 15:26:35 +0200 | |
|---|---|---|
| committer | 2022-10-28 15:26:35 +0200 | |
| commit | aefb991c77462a867f6cd3d16fe912374cc8772e (patch) | |
| tree | 8a3bf3f5b40052e9b275b5448c53799d45fd059d | |
| parent | 28d2fc3ad6efc4447f2c37973c2eee30aa305aaf (diff) | |
konami/xmen.cpp: worked around MT08470
| -rw-r--r-- | src/mame/konami/xmen.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/konami/xmen.cpp b/src/mame/konami/xmen.cpp index 9ee01cd69b1..b183fe1edd7 100644 --- a/src/mame/konami/xmen.cpp +++ b/src/mame/konami/xmen.cpp @@ -730,7 +730,9 @@ void xmen6p_state::xmen6p(machine_config &config) // video hardware config.set_default_layout(layout_dualhsxs); - SCREEN(config.replace(), m_screen, SCREEN_TYPE_RASTER); + config.device_remove("screen"); + + SCREEN(config, m_screen, SCREEN_TYPE_RASTER); m_screen->set_refresh_hz(60); m_screen->set_vblank_time(ATTOSECONDS_IN_USEC(0)); m_screen->set_size(64*8, 32*8); |
