mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
Add 'horde' cvar (for 2021 rerelease)
This commit is contained in:
parent
9582f6c7b6
commit
ec49ef2441
1 changed files with 2 additions and 0 deletions
|
@ -84,6 +84,7 @@ cvar_t temp1 = {"temp1","0",CVAR_NONE};
|
|||
cvar_t devstats = {"devstats","0",CVAR_NONE}; //johnfitz -- track developer statistics that vary every frame
|
||||
|
||||
cvar_t campaign = {"campaign","0",CVAR_NONE}; // for the 2021 rerelease
|
||||
cvar_t horde = {"horde","0",CVAR_NONE}; // for the 2021 rerelease
|
||||
|
||||
devstats_t dev_stats, dev_peakstats;
|
||||
overflowtimes_t dev_overflows; //this stores the last time overflow messages were displayed, not the last time overflows occured
|
||||
|
@ -284,6 +285,7 @@ void Host_InitLocal (void)
|
|||
Cvar_RegisterVariable (&deathmatch);
|
||||
|
||||
Cvar_RegisterVariable (&campaign);
|
||||
Cvar_RegisterVariable (&horde);
|
||||
|
||||
Cvar_RegisterVariable (&pausable);
|
||||
|
||||
|
|
Loading…
Reference in a new issue