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.
This commit is contained in:
parent
79badbbe63
commit
ef3c816c2f
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue