Remove console messages on swappable activate/deactivate, debugging cruft

This commit is contained in:
nattthebear 2017-08-08 19:10:07 -04:00
parent ffe051ab26
commit d7032330f1
1 changed files with 0 additions and 2 deletions

View File

@ -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();
}