mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 14:01:26 +00:00
add a 'campaign' cvar for quake '2021 release' version.
This commit is contained in:
parent
dd8f4fbd29
commit
65c1644849
1 changed files with 4 additions and 0 deletions
|
@ -83,6 +83,8 @@ 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
|
||||
|
||||
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
|
||||
|
||||
|
@ -281,6 +283,8 @@ void Host_InitLocal (void)
|
|||
Cvar_RegisterVariable (&coop);
|
||||
Cvar_RegisterVariable (&deathmatch);
|
||||
|
||||
Cvar_RegisterVariable (&campaign);
|
||||
|
||||
Cvar_RegisterVariable (&pausable);
|
||||
|
||||
Cvar_RegisterVariable (&temp1);
|
||||
|
|
Loading…
Reference in a new issue