From 1c9a2cc768c0419269ff1880cb27d0aac6093f61 Mon Sep 17 00:00:00 2001 From: mamehaze <140764005+mamehaze@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:03:54 +0000 Subject: sega/megaplay.cpp: Use export NTSC Mega Drive system configuration. (#11748) MegaPlay was apparently only intended for export markets and games shouldn't run in Japanese. --- src/mame/sega/megaplay.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/sega/megaplay.cpp b/src/mame/sega/megaplay.cpp index 695f29f3511..7b20606f2f0 100644 --- a/src/mame/sega/megaplay.cpp +++ b/src/mame/sega/megaplay.cpp @@ -969,7 +969,8 @@ void mplay_state::init_megaplay() m_ic36_ram = std::make_unique(0x10000 / 2); m_ic37_ram = std::make_unique(0x10000); - init_megadrij(); + // use Export NTSC init, as MegaPlay was apparently only intended for export markets. + init_megadriv(); // megaplay has ram shared with the bios cpu here m_z80snd->space(AS_PROGRAM).install_ram(0x2000, 0x3fff, &m_ic36_ram[0]); -- cgit v1.2.3