From 6d32112c9e7e526914f9aa428b2e6a5cfe9976b0 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 13 Aug 2016 16:33:54 -0500 Subject: [PATCH] fix gpgx, n64 trace loggers --- BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs | 2 +- BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs | 2 +- BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.ITraceable.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs index 1672e98708..37b09d2572 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs @@ -32,7 +32,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 RegisterInfo = "" }; - Buffer.Add(traceInfo); + Put(traceInfo); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs index b262da4b15..7f173645b6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.ITraceable.cs @@ -59,7 +59,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx traceInfo.RegisterInfo = sb.ToString().Trim(); - Buffer.Add(traceInfo); + Put(traceInfo); } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.ITraceable.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.ITraceable.cs index 2bff6f65fa..98da612399 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.ITraceable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.ITraceable.cs @@ -59,7 +59,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx64 traceInfo.RegisterInfo = sb.ToString().Trim(); - Buffer.Add(traceInfo); + Put(traceInfo); } } }