fix gpgx invisible heap size

kb is not bytes
This commit is contained in:
CasualPokePlayer 2024-04-26 16:26:00 -07:00
parent fb438863f5
commit 811555d594
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
Filename = "gpgx.wbx",
SbrkHeapSizeKB = 512,
SealedHeapSizeKB = 4 * 1024,
InvisibleHeapSizeKB = 2572 * 1024,
InvisibleHeapSizeKB = 4 * 1024,
PlainHeapSizeKB = 4 * 1024,
MmapHeapSizeKB = 1 * 1024,
SkipCoreConsistencyCheck = lp.Comm.CorePreferences.HasFlag(CoreComm.CorePreferencesFlags.WaterboxCoreConsistencyCheck),