Increase print buffer size (#4035)

Fix for the crash reported in
https://github.com/open-goal/jak-project/issues/4034
This commit is contained in:
water111
2025-10-05 17:39:40 -04:00
committed by GitHub
parent c8a1643e9f
commit 652c90cdc2
+1 -1
View File
@@ -20,7 +20,7 @@ extern size_t PrintBufSize; // added
constexpr u32 DEBUG_MESSAGE_BUFFER_SIZE = 0x80000;
constexpr u32 DEBUG_OUTPUT_BUFFER_SIZE = 0x80000;
constexpr u32 DEBUG_PRINT_BUFFER_SIZE = 0x200000;
constexpr u32 PRINT_BUFFER_SIZE = 0x10000; // upped from 0x2000 on PS2 because we ran out of memory
constexpr u32 PRINT_BUFFER_SIZE = 0x20000; // upped from 0x2000 on PS2 because we ran out of memory
struct format_struct {
char data[0x40];