mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
The standard_quake qboolean now lives here, but Game_Init is now an empty
function. There's probably some use for it later on anyway (probably for metadata defaults or something), but the -hipnotic and -rogue checks are now in quakefs.c.
This commit is contained in:
parent
1d04bc223d
commit
ddd4c279fa
1 changed files with 4 additions and 15 deletions
|
@ -4,7 +4,6 @@
|
|||
game specific support (notably hipnotic, rogue and abyss)
|
||||
|
||||
Copyright (C) 1996-1997 Id Software, Inc.
|
||||
Copyright (C) 1999,2000 Nelson Rush.
|
||||
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
||||
Please see the file "AUTHORS" for a list of contributors
|
||||
|
||||
|
@ -35,24 +34,14 @@
|
|||
#include "qargs.h"
|
||||
#include "game.h"
|
||||
|
||||
qboolean standard_quake = false;
|
||||
|
||||
/*
|
||||
Game_Init
|
||||
*/
|
||||
void
|
||||
Game_Init (void)
|
||||
{
|
||||
if (COM_CheckParm ("-abyss")) {
|
||||
abyss = true;
|
||||
standard_quake = true;
|
||||
}
|
||||
|
||||
if (COM_CheckParm ("-rogue")) {
|
||||
rogue = true;
|
||||
standard_quake = false;
|
||||
}
|
||||
|
||||
if (COM_CheckParm ("-hipnotic")) {
|
||||
hipnotic = true;
|
||||
standard_quake = false;
|
||||
}
|
||||
// This used to have the -hipnotic and -rogue checks, but they've been
|
||||
// moved to quakefs.c for the time being..
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue