From 29c0733150526319432060211b750600d526f719 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 28 Oct 2012 23:42:04 +0000 Subject: [PATCH] sneshawk: log core firmware requests to console --- BizHawk.Emulation/Consoles/Nintendo/SNES/LibsnesCore.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Emulation/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation/Consoles/Nintendo/SNES/LibsnesCore.cs index edaaf362f8..d92b61b269 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -360,6 +360,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo.SNES return ""; } + Console.WriteLine("Served libsnes request for firmware \"{0}\" with \"{1}\"", hint, test); + //return the path we built return test; }