mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
Include quakedef.h first so we get config.h definitions.
This commit is contained in:
parent
27528735bd
commit
909106ce90
2 changed files with 4 additions and 2 deletions
|
@ -43,7 +43,6 @@
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
|
||||||
#ifndef QUAKEWORLD
|
#ifndef QUAKEWORLD
|
||||||
qboolean isDedicated;
|
qboolean isDedicated;
|
||||||
#endif
|
#endif
|
||||||
|
@ -282,7 +281,11 @@ int main (int c, char **v) {
|
||||||
parms.argc = com_argc;
|
parms.argc = com_argc;
|
||||||
parms.argv = com_argv;
|
parms.argv = com_argv;
|
||||||
|
|
||||||
|
#ifdef GLQUAKE
|
||||||
parms.memsize = 16*1024*1024;
|
parms.memsize = 16*1024*1024;
|
||||||
|
#else
|
||||||
|
parms.memsize = 8*1024*1024;
|
||||||
|
#endif
|
||||||
|
|
||||||
j = COM_CheckParm("-mem");
|
j = COM_CheckParm("-mem");
|
||||||
if (j)
|
if (j)
|
||||||
|
|
|
@ -25,7 +25,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include "winquake.h"
|
#include "winquake.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue