From 979258f2cf9738a6ed89c978df14c8c694bc4f4d Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Fri, 26 Apr 2024 14:41:22 -0700 Subject: [PATCH] Fix calculation for disc buffer size needed --- src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs | 3 ++- 1 file changed, 2 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 80206da5d9..a42f6c86ad 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs @@ -39,7 +39,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx // internally, the core caches disc sectors read into the invisible heap var discBufferSize = lp.Discs.Sum(d => d.DiscData.Session1.LeadoutLBA * (2352 + 96 + 2)); - discBufferSize += 1024 - discBufferSize % 1024; + discBufferSize /= 1024; + discBufferSize++; _elf = new WaterboxHost(new WaterboxOptions {