Bump the default cache size to 96 MiB.

git-svn-id: https://svn.eduke32.com/eduke32@6875 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2018-05-03 06:05:56 +00:00
parent d31ae817f1
commit 00d1c5fc5b

View file

@ -98,9 +98,9 @@ int32_t g_Shareware = 0;
// Ideally, we would look at our memory usage on our most cramped platform and figure out // Ideally, we would look at our memory usage on our most cramped platform and figure out
// how much of that is needed for the underlying OS and things like SDL instead of guessing // how much of that is needed for the underlying OS and things like SDL instead of guessing
#ifndef GEKKO #ifndef GEKKO
int32_t MAXCACHE1DSIZE = (24*1048576); int32_t MAXCACHE1DSIZE = (96*1024*1024);
#else #else
int32_t MAXCACHE1DSIZE = (8*1048576); int32_t MAXCACHE1DSIZE = (8*1024*1024);
#endif #endif
int32_t tempwallptr; int32_t tempwallptr;