mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-23 12:21:07 +00:00
Fix missing fov conversion
This commit is contained in:
parent
0141eed412
commit
a187b79f34
1 changed files with 2 additions and 1 deletions
|
@ -2492,7 +2492,8 @@ static boolean CV_FilterVarByVersion(consvar_t *v, const char *valstr)
|
|||
(!stricmp(v->name, "cam_speed") && !stricmp(valstr, "0.3")) ||
|
||||
(!stricmp(v->name, "cam2_speed") && !stricmp(valstr, "0.3")) ||
|
||||
(!stricmp(v->name, "timerres") && atoi(valstr) == 0) || // 0 = classic
|
||||
(!stricmp(v->name, "gr_modelinterpolation") && atoi(valstr) == 1) // 1 = sometimes
|
||||
(!stricmp(v->name, "gr_modelinterpolation") && atoi(valstr) == 1) || // 1 = sometimes
|
||||
(!stricmp(v->name, "fov") && atoi(valstr) == 90)
|
||||
)
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue