From d7032330f1ae26c36ba5811015418603e5ebb85f Mon Sep 17 00:00:00 2001 From: nattthebear Date: Tue, 8 Aug 2017 19:10:07 -0400 Subject: [PATCH] Remove console messages on swappable activate/deactivate, debugging cruft --- BizHawk.Emulation.Cores/Waterbox/Swappable.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Waterbox/Swappable.cs b/BizHawk.Emulation.Cores/Waterbox/Swappable.cs index 32bc1bf0f5..9b76314bc7 100644 --- a/BizHawk.Emulation.Cores/Waterbox/Swappable.cs +++ b/BizHawk.Emulation.Cores/Waterbox/Swappable.cs @@ -126,14 +126,12 @@ namespace BizHawk.Emulation.Cores.Waterbox private void DeactivateInternal() { - Console.WriteLine("Swappable DeactivateInternal {0}", GetHashCode()); foreach (var m in _memoryBlocks) m.Deactivate(); } private void ActivateInternal() { - Console.WriteLine("Swappable ActivateInternal {0}", GetHashCode()); foreach (var m in _memoryBlocks) m.Activate(); }