Increase audio heap sizes on PC

prevent allocation failures from larger 64-bit pointers
This commit is contained in:
PJB3005
2026-02-26 18:46:47 +01:00
parent b36aee6da7
commit 8b4bb290d8
3 changed files with 9 additions and 1 deletions
+4
View File
@@ -52,7 +52,11 @@ OSTime mDoMain::sPowerOnTime;
OSTime mDoMain::sHungUpTime;
u32 mDoMain::memMargin = 0xFFFFFFFF;
char mDoMain::COPYDATE_STRING[18] = "??/??/?? ??:??:??";
#if TARGET_PC
const int audioHeapSize = 0x14D800 * 2;
#else
const int audioHeapSize = 0x14D800;
#endif
// --- PC LOGGING CALLBACK ---
void aurora_log_callback(AuroraLogLevel level, const char* module, const char* message,