From a43d02a4221119936326f3d9fb96dc1562bd62af Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 17 Oct 2012 15:20:50 +0000 Subject: [PATCH] fix: console no longer gets spammed with "Reset" if you use the menu soft reset item while the emulator is paused. if you want to log reset information, do it from a more appropriate location (core?) --- BizHawk.MultiClient/Input/ControllerBinding.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/Input/ControllerBinding.cs b/BizHawk.MultiClient/Input/ControllerBinding.cs index c61eb7c58b..eb141ad0dc 100644 --- a/BizHawk.MultiClient/Input/ControllerBinding.cs +++ b/BizHawk.MultiClient/Input/ControllerBinding.cs @@ -70,7 +70,7 @@ namespace BizHawk.MultiClient if (controller.IsPressed(button)) { buttons[button] = true; - Console.WriteLine(button); + //Console.WriteLine(button); } } }