Remove console messages on swappable activate/deactivate, debugging cruft
This commit is contained in:
parent
ffe051ab26
commit
d7032330f1
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue