From 5326d76ec50ea08230b9a7360f5d2bd47989f0cc Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Fri, 26 Apr 2024 12:55:21 -0700 Subject: [PATCH] Fix GPGX CD buffer allocation --- src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs index 3eff376ec3..8f2c9a5a2b 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs @@ -37,13 +37,17 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx throw new InvalidOperationException("ROM too big! Did you try to load a CD as a ROM?"); } + // internally, the core caches disc sectors read into the invisible heap + var discBufferSize = lp.Discs.Sum(d => d.DiscData.Session1.LeadoutLBA * 2448); + discBufferSize += 1024 - discBufferSize % 1024; + _elf = new WaterboxHost(new WaterboxOptions { Path = PathUtils.DllDirectoryPath, Filename = "gpgx.wbx", SbrkHeapSizeKB = 512, SealedHeapSizeKB = 4 * 1024, - InvisibleHeapSizeKB = 4 * 1024, + InvisibleHeapSizeKB = 4 * 1024 + (uint)discBufferSize, PlainHeapSizeKB = 48 * 1024, MmapHeapSizeKB = 1 * 1024, SkipCoreConsistencyCheck = lp.Comm.CorePreferences.HasFlag(CoreComm.CorePreferencesFlags.WaterboxCoreConsistencyCheck),