Include quakedef.h first so we get config.h definitions.

This commit is contained in:
Marcus Sundberg 2000-03-19 20:39:32 +00:00
parent 27528735bd
commit 909106ce90
2 changed files with 4 additions and 2 deletions

View File

@ -43,7 +43,6 @@
#include <sys/mman.h>
#include <sys/stat.h>
#ifndef QUAKEWORLD
qboolean isDedicated;
#endif
@ -282,7 +281,11 @@ int main (int c, char **v) {
parms.argc = com_argc;
parms.argv = com_argv;
#ifdef GLQUAKE
parms.memsize = 16*1024*1024;
#else
parms.memsize = 8*1024*1024;
#endif
j = COM_CheckParm("-mem");
if (j)

View File

@ -25,7 +25,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <unistd.h>
#endif
#ifdef _WIN32
#include "winquake.h"
#endif