mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
bump default heap size to 72mb and zone size to 512kb in 64 bit builds.
git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@853 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
a8a79c4f97
commit
9c8963999d
2 changed files with 8 additions and 0 deletions
|
@ -52,7 +52,11 @@ static void Sys_CheckSDL (void)
|
|||
}
|
||||
}
|
||||
|
||||
#if defined(_LP64) || defined(__LP64__) || defined(_WIN64)
|
||||
#define DEFAULT_MEMORY 0x4800000
|
||||
#else
|
||||
#define DEFAULT_MEMORY 0x4000000
|
||||
#endif
|
||||
|
||||
static quakeparms_t parms;
|
||||
static Uint8 appState;
|
||||
|
|
|
@ -22,7 +22,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#include "quakedef.h"
|
||||
|
||||
#if defined(_LP64) || defined(__LP64__) || defined(_WIN64)
|
||||
#define DYNAMIC_SIZE 0x80000 // 512*1024
|
||||
#else
|
||||
#define DYNAMIC_SIZE 0x60000 // 384*1024
|
||||
#endif
|
||||
|
||||
#define ZONEID 0x1d4a11
|
||||
#define MINFRAGMENT 64
|
||||
|
|
Loading…
Reference in a new issue