Add "" scope to GPGX memory domain callbacks so the callback created by the trace buffer is within scope.

This commit is contained in:
alyosha-tas 2017-12-29 22:33:26 -05:00
parent 59bb3e1fc8
commit c24e88d4a3
1 changed files with 1 additions and 1 deletions

View File

@ -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;