From 6406646893f3c65e00f65cf0cfede353a4277477 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 3 Jul 2017 14:44:14 -0400 Subject: [PATCH] waterbox: Use less rams and stuff --- BizHawk.Emulation.Cores/Waterbox/PeRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Waterbox/PeRunner.cs b/BizHawk.Emulation.Cores/Waterbox/PeRunner.cs index 6231a6e840..1db3950b0a 100644 --- a/BizHawk.Emulation.Cores/Waterbox/PeRunner.cs +++ b/BizHawk.Emulation.Cores/Waterbox/PeRunner.cs @@ -1046,7 +1046,7 @@ namespace BizHawk.Emulation.Cores.Waterbox _sealedheap.Seal(); foreach (var h in _heaps) { - if (h != _invisibleheap) // TODO: if we have more non-savestated heaps, refine this hack + if (h != _invisibleheap && h != _sealedheap) // TODO: if we have more non-savestated heaps, refine this hack h.Memory.SaveXorSnapshot(); } foreach (var pe in _modules)