From c24e88d4a3aa5b70a2904d47a9d588f87c4e1443 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Fri, 29 Dec 2017 22:33:26 -0500 Subject: [PATCH] Add "" scope to GPGX memory domain callbacks so the callback created by the trace buffer is within scope. --- .../Consoles/Sega/gpgx64/GPGX.IDebuggable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IDebuggable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IDebuggable.cs index b619d2c85c..ba82d0ff1a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IDebuggable.cs @@ -52,7 +52,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx get { throw new NotImplementedException(); } } - private readonly MemoryCallbackSystem _memoryCallbacks = new MemoryCallbackSystem(new[] { "M68K BUS" }); + private readonly MemoryCallbackSystem _memoryCallbacks = new MemoryCallbackSystem(new[] { "M68K BUS", "" }); private LibGPGX.mem_cb ExecCallback; private LibGPGX.mem_cb ReadCallback;