mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-27 00:45:10 -04:00
Increase audio heap sizes on PC
prevent allocation failures from larger 64-bit pointers
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user