From 3435e5f70e1eeb604e58876150486f335a783647 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 21 Aug 2016 15:27:31 -0500 Subject: [PATCH] psx tracer - probably fix crash due to disposed delegate (didnt test) --- .../Consoles/Sony/PSX/Octoshock.ITraceable.cs | 10 ++++++---- BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.ITraceable.cs index c1779a18d2..ab302315c2 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.ITraceable.cs @@ -12,7 +12,9 @@ namespace BizHawk.Emulation.Cores.Sony.PSX { public TraceBuffer Tracer { get; private set; } - public static string TraceHeader = "R3000A: PC, raw bytes, mnemonic, registers (GPRs, lo, hi, sr, cause, epc)"; + public static string TraceHeader = "R3000A: PC, raw bytes, mnemonic, registers (GPRs, lo, hi, sr, cause, epc)"; + + OctoshockDll.ShockCallback_Trace trace_cb; public void ShockTraceCallback(IntPtr opaque, uint PC, uint inst, string dis) { @@ -26,9 +28,9 @@ namespace BizHawk.Emulation.Cores.Sony.PSX string.Format("{0}:{1} ", r.Key, r.Value.Value.ToHexString(r.Value.BitSize / 4))); - } - - Tracer.Put(new TraceInfo + } + + Tracer.Put(new TraceInfo { Disassembly = string.Format("{0:X8}: {1:X8} {2}", PC, inst, dis.PadRight(20)), RegisterInfo = sb.ToString().Trim() diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index cf1afd5144..ea97ac631d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -323,6 +323,8 @@ namespace BizHawk.Emulation.Cores.Sony.PSX SetMemoryDomains(); InitMemCallbacks(); + trace_cb = new OctoshockDll.ShockCallback_Trace(ShockTraceCallback); + //set a default framebuffer based on the first frame of emulation, to cut down on flickering or whatever //this is probably quixotic, but we have to pick something {