some oldtree cruft for rogue/hipnotic removed (we'll support them in a

very different way than did Id Software did later on, it'll be a major
improvement, that's for sure..)

fs_basegame Cvar created, defaults to whatever you selected in config.h,
most likely id1.
This commit is contained in:
Joseph Carter 2000-05-29 12:45:05 +00:00
parent 91e380d3b3
commit efb2d99e22
4 changed files with 18 additions and 37 deletions

View file

@ -60,7 +60,6 @@ int com_argc;
char **com_argv;
char *com_cmdline;
cvar_t *cmdline;
qboolean standard_quake = true, rogue, hipnotic;
/*
================
@ -133,18 +132,6 @@ void COM_InitArgv (int argc, char **argv)
largv[com_argc] = argvdummy;
com_argv = largv;
if (COM_CheckParm ("-rogue"))
{
rogue = true;
standard_quake = false;
}
if (COM_CheckParm ("-hipnotic"))
{
hipnotic = true;
standard_quake = false;
}
}
/*