From 652c90cdc206a87d9b5ae1c12500e1a7e97c748a Mon Sep 17 00:00:00 2001 From: water111 <48171810+water111@users.noreply.github.com> Date: Sun, 5 Oct 2025 17:39:40 -0400 Subject: [PATCH] Increase print buffer size (#4035) Fix for the crash reported in https://github.com/open-goal/jak-project/issues/4034 --- game/kernel/common/kprint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/kernel/common/kprint.h b/game/kernel/common/kprint.h index 2215f5b69a..e5f22d3bfe 100644 --- a/game/kernel/common/kprint.h +++ b/game/kernel/common/kprint.h @@ -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];