From 38fe40abf2eca9375fb0599ff03d05102cc8d7bc Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 6 Jul 2019 16:30:26 +0000 Subject: [PATCH] Bump MAXCACHEOBJECTS from 9216 to 16384 This is actually the first time we've increased this limit in the entire time the engine source has been available. git-svn-id: https://svn.eduke32.com/eduke32@7757 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/src/cache1d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/src/cache1d.cpp b/source/build/src/cache1d.cpp index 9e3e63211..669d01933 100644 --- a/source/build/src/cache1d.cpp +++ b/source/build/src/cache1d.cpp @@ -100,7 +100,7 @@ int32_t kpzbufload(char const * const filnam) // After calling uninitcache, it is still ok to call allocache // without first calling initcache. -#define MAXCACHEOBJECTS 9216 +#define MAXCACHEOBJECTS 16384 #if !defined DEBUG_ALLOCACHE_AS_MALLOC static int32_t cachesize = 0;