From 57b9ff875e7ab0b6af17ac39a9958c8f3274d529 Mon Sep 17 00:00:00 2001 From: feos Date: Fri, 19 Aug 2016 18:53:50 +0300 Subject: [PATCH] snes: fix crash when advancing after tracer was disabled --- .../Consoles/Nintendo/SNES/LibsnesCore.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index b8af370aab..0ac374f092 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -645,6 +645,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES IsLagFrame = true; + if (!nocallbacks && Tracer.Enabled) + api.QUERY_set_trace_callback(tracecb); + else + api.QUERY_set_trace_callback(null); + // for deterministic emulation, save the state we're going to use before frame advance // don't do this during nocallbacks though, since it's already been done if (!nocallbacks && DeterministicEmulation) @@ -660,11 +665,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES savestatebuff = ms.ToArray(); } - if (!nocallbacks && Tracer.Enabled) - api.QUERY_set_trace_callback(tracecb); - else - api.QUERY_set_trace_callback(null); - // speedup when sound rendering is not needed if (!rendersound) api.QUERY_set_audio_sample(null);