Increase zone memory

Double the amount of preallocated zone memory which is needed for some
recent high resolution texture packs (e.g. "Neural Upscale" by
MamiyaOtaru).

Increasing this makes sense now that we have
20a77764dd (diff-12a54363af4f3f3aaa86590d1d6b3e38)
and it doesn't hurt either in times where 8GB+ of ram is _very_ common.

Additionally, as stated in
https://github.com/ioquake/ioq3/blob/master/code/qcommon/common.c#L1435
is is impossible to set com_zonemegs via config file and thus making
it hard to ship zonemegs increasement with any mods or packs.
This commit is contained in:
milaq 2020-02-09 15:20:27 +01:00
parent daae32ddfd
commit bd9012e3af
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ int demo_protocols[] =
#define MIN_DEDICATED_COMHUNKMEGS 1 #define MIN_DEDICATED_COMHUNKMEGS 1
#define MIN_COMHUNKMEGS 56 #define MIN_COMHUNKMEGS 56
#define DEF_COMHUNKMEGS 128 #define DEF_COMHUNKMEGS 128
#define DEF_COMZONEMEGS 24 #define DEF_COMZONEMEGS 48
#define DEF_COMHUNKMEGS_S XSTRING(DEF_COMHUNKMEGS) #define DEF_COMHUNKMEGS_S XSTRING(DEF_COMHUNKMEGS)
#define DEF_COMZONEMEGS_S XSTRING(DEF_COMZONEMEGS) #define DEF_COMZONEMEGS_S XSTRING(DEF_COMZONEMEGS)