From d4f1768bbde0be3ab30f90ca0d87c0366daff654 Mon Sep 17 00:00:00 2001 From: zxcwdta Date: Sat, 27 Dec 2025 18:00:57 +1100 Subject: [PATCH] avs: Increased heap size for later gitadora games (#475) ## Link to GitHub Issue, if one exists None ## Description of change Increase the heap size for GITADORA games. Later releases of GITADORA attempt to allocate a block of memory (size of 0x7ECF78) for notes_info.xml but fail due to heap size being too small, leading to HDD ERROR 5-1502-0008. ## Testing Tested with current and previous GITADORA releases. --- src/spice2x/avs/core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/spice2x/avs/core.cpp b/src/spice2x/avs/core.cpp index b52d623..42f8757 100644 --- a/src/spice2x/avs/core.cpp +++ b/src/spice2x/avs/core.cpp @@ -1108,6 +1108,8 @@ namespace avs { // SOUND VOLTEX {"soundvoltex.dll", 0x10000000}, + // GITADORA + {"gdxg.dll", 0x2000000}, #endif // jubeat {"jubeat.dll", 0x2000000},