From 75aca0e7c6c779f0cd0af89f121531e49d61bd51 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 3 Aug 2020 21:11:28 -0400 Subject: [PATCH] Up the sbrk heap size for dobiestation Guess it manages to run out with 4MB on some stuff? --- src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs b/src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs index face5c709a..83203a94a8 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sony/PS2/DobieStation.cs @@ -38,7 +38,7 @@ namespace BizHawk.Emulation.Cores.Sony.PS2 _core = PreInit(new WaterboxOptions { Filename = "dobie.wbx", - SbrkHeapSizeKB = 4 * 1024, + SbrkHeapSizeKB = 64 * 1024, SealedHeapSizeKB = 4 * 1024, InvisibleHeapSizeKB = 4 * 1024, PlainHeapSizeKB = 256,