tweak ECL_INVISIBLE a bit. Internal crap,.

This commit is contained in:
nattthebear 2017-07-19 21:09:39 -04:00
parent 3ff8eabdf2
commit 223902a2f8
1 changed files with 11 additions and 0 deletions

View File

@ -344,6 +344,13 @@ namespace BizHawk.Emulation.Cores.Waterbox
Marshal.Copy(Z.US(_imports.Start), impData, 0, (int)_imports.Size);
WaterboxUtils.ZeroMemory(Z.US(_imports.Start), (long)_imports.Size);
}
byte[] invData = null;
if (_invisible != null)
{
invData = new byte[_invisible.Size];
Marshal.Copy(Z.US(_invisible.Start), invData, 0, (int)_invisible.Size);
WaterboxUtils.ZeroMemory(Z.US(_invisible.Start), (long)_invisible.Size);
}
Memory.SaveXorSnapshot();
if (_imports != null)
{
@ -351,6 +358,10 @@ namespace BizHawk.Emulation.Cores.Waterbox
_imports.W = false;
Memory.Protect(_imports.Start, _imports.Size, _imports.Prot);
}
if (_invisible != null)
{
Marshal.Copy(invData, 0, Z.US(_invisible.Start), (int)_invisible.Size);
}
if (_sealed != null)
{
_sealed.W = false;