mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 00:30:57 +00:00
fix a coupld d'ohs for pr_checkextensions
This commit is contained in:
parent
5eb35f0b2a
commit
cca3e4c203
2 changed files with 4 additions and 4 deletions
|
@ -53,7 +53,7 @@ sv_fields_t sv_fields;
|
||||||
|
|
||||||
cvar_t *r_skyname;
|
cvar_t *r_skyname;
|
||||||
cvar_t *sv_progs;
|
cvar_t *sv_progs;
|
||||||
cvar_t *pr_checkextentions;
|
cvar_t *pr_checkextensions;
|
||||||
|
|
||||||
cvar_t *nomonsters;
|
cvar_t *nomonsters;
|
||||||
cvar_t *gamecfg;
|
cvar_t *gamecfg;
|
||||||
|
@ -340,7 +340,7 @@ SV_Progs_Init_Cvars (void)
|
||||||
sv_progs = Cvar_Get ("sv_progs", "progs.dat", CVAR_ROM, NULL,
|
sv_progs = Cvar_Get ("sv_progs", "progs.dat", CVAR_ROM, NULL,
|
||||||
"Allows selectable game progs if you have several "
|
"Allows selectable game progs if you have several "
|
||||||
"of them in the gamedir");
|
"of them in the gamedir");
|
||||||
pr_checkextentions = Cvar_Get ("sv_progs", "1", CVAR_ROM, NULL,
|
pr_checkextensions = Cvar_Get ("pr_checkextensions", "1", CVAR_ROM, NULL,
|
||||||
"indicate the presence of the "
|
"indicate the presence of the "
|
||||||
"checkextentions qc function");
|
"checkextentions qc function");
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ sv_fields_t sv_fields;
|
||||||
progs_t sv_pr_state;
|
progs_t sv_pr_state;
|
||||||
cvar_t *r_skyname;
|
cvar_t *r_skyname;
|
||||||
cvar_t *sv_progs;
|
cvar_t *sv_progs;
|
||||||
cvar_t *pr_checkextentions;
|
cvar_t *pr_checkextensions;
|
||||||
cvar_t *sv_old_entity_free;
|
cvar_t *sv_old_entity_free;
|
||||||
|
|
||||||
func_t EndFrame;
|
func_t EndFrame;
|
||||||
|
@ -382,7 +382,7 @@ SV_Progs_Init_Cvars (void)
|
||||||
sv_progs = Cvar_Get ("sv_progs", "qwprogs.dat", CVAR_NONE, NULL,
|
sv_progs = Cvar_Get ("sv_progs", "qwprogs.dat", CVAR_NONE, NULL,
|
||||||
"Allows selectable game progs if you have several "
|
"Allows selectable game progs if you have several "
|
||||||
"of them in the gamedir");
|
"of them in the gamedir");
|
||||||
pr_checkextentions = Cvar_Get ("sv_progs", "1", CVAR_ROM, NULL,
|
pr_checkextensions = Cvar_Get ("pr_checkextensions", "1", CVAR_ROM, NULL,
|
||||||
"indicate the presence of the "
|
"indicate the presence of the "
|
||||||
"checkextentions qc function");
|
"checkextentions qc function");
|
||||||
sv_old_entity_free = Cvar_Get ("sv_old_entity_free", "0", CVAR_NONE, NULL,
|
sv_old_entity_free = Cvar_Get ("sv_old_entity_free", "0", CVAR_NONE, NULL,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue