mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
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:
parent
d31ae817f1
commit
00d1c5fc5b
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue