From 2f39dd1b86b8ef0484b0f8471fb074f7bc8ce942 Mon Sep 17 00:00:00 2001 From: cypress Date: Tue, 29 Aug 2023 10:53:52 -0400 Subject: [PATCH] NX/VITA: Increase STRINGTEMP_BUFFERS to 1024 --- source/pr_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/pr_cmds.c b/source/pr_cmds.c index 3ae0130..7227cee 100644 --- a/source/pr_cmds.c +++ b/source/pr_cmds.c @@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "quakedef.h" -#define STRINGTEMP_BUFFERS 64 +#define STRINGTEMP_BUFFERS 1024 #define STRINGTEMP_LENGTH 1024 static char pr_string_temp[STRINGTEMP_BUFFERS][STRINGTEMP_LENGTH]; static byte pr_string_tempindex = 0;