quick hack to hopefully unbreak quicknes on loonix

This commit is contained in:
nattthebear 2020-06-06 08:21:26 -04:00
parent b3c3a3a4bb
commit db934f3689
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ namespace BizHawk.BizInvoke
public SysVHostMsGuest()
{
int size = 4 * 1024 * 1024;
_memory = MemoryBlock.Create((ulong)size);
_memory = MemoryBlock.Create(0x36a00000000, (ulong)size);
_memory.Activate();
_refs = new WeakReference[size / BlockSize];
}