From ef3c816c2f82e79b4038854edf375fd6f58df503 Mon Sep 17 00:00:00 2001 From: MrCheeze Date: Wed, 27 Jul 2016 19:54:48 -0400 Subject: [PATCH] Fix SNES trace logging to not lose information Fixed the bug where if a tracelog line contains more than one "[", everything after the second [ will be mistakenly thrown out. --- .../Consoles/Nintendo/SNES/LibsnesCore.cs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index 90d1119e34..b674276c06 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -1,4 +1,4 @@ -//TODO - add serializer (?) +//TODO - add serializer (?) //http://wiki.superfamicom.org/snes/show/Backgrounds @@ -394,13 +394,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES void snes_trace(string msg) { // TODO: get them out of the core split up and remove this hackery - string splitStr = "["; - if (!msg.Contains('[')) - { - splitStr = "A:"; - } + string splitStr = "A:"; - var split = msg.Split(new[] {splitStr }, StringSplitOptions.None); + var split = msg.Split(new[] {splitStr }, 2, StringSplitOptions.None); Tracer.Put(new TraceInfo {