Skip to content
Snippets Groups Projects
Commit a187b79f authored by Radicalicious's avatar Radicalicious
Browse files

Fix missing fov conversion

parent 0141eed4
Branches
No related tags found
No related merge requests found
...@@ -2492,7 +2492,8 @@ static boolean CV_FilterVarByVersion(consvar_t *v, const char *valstr) ...@@ -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, "cam_speed") && !stricmp(valstr, "0.3")) ||
(!stricmp(v->name, "cam2_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, "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; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment