tweak ECL_INVISIBLE a bit. Internal crap,.
This commit is contained in:
parent
3ff8eabdf2
commit
223902a2f8
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue