From 4137da7e2276279b879fd3e208ef8ff68469abb8 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 21 Feb 2016 11:15:13 -0500 Subject: [PATCH] GPGX - make M68K Bus always the system bus --- .../Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs index 45da66bf9b..5e9de71638 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.IMemoryDomains.cs @@ -87,7 +87,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx } MemoryDomains = new MemoryDomainList(mm); - MemoryDomains.SystemBus = IsSegaCD ? s68Bus : m68Bus; + MemoryDomains.SystemBus = m68Bus; (ServiceProvider as BasicServiceProvider).Register(MemoryDomains); }