From 170a05248947fc2fea71a8a961986d8010002364 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sun, 26 Oct 2025 10:15:46 +0000 Subject: [PATCH] Set MIN_COMHUNKMEGS to match DEF_COMHUNKMEGS Changes in ioq3, most notably in the OpenGL 2 renderer, have gradually increased the mininum memory requirements, to the point where the original value is too low for the Team Arena game, among other things, so increase the minimum to match our (already increased) default. More information in issue #816. --- code/qcommon/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/common.c b/code/qcommon/common.c index a74aeece..0c46283a 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -37,8 +37,8 @@ int demo_protocols[] = #define MAX_NUM_ARGVS 50 #define MIN_DEDICATED_COMHUNKMEGS 1 -#define MIN_COMHUNKMEGS 56 #define DEF_COMHUNKMEGS 128 +#define MIN_COMHUNKMEGS DEF_COMHUNKMEGS #define DEF_COMZONEMEGS 24 #define DEF_COMHUNKMEGS_S XSTRING(DEF_COMHUNKMEGS) #define DEF_COMZONEMEGS_S XSTRING(DEF_COMZONEMEGS)