diff --git a/src/command.c b/src/command.c index 87c3c5bbb807860a00ccf952a9296f80dff53c83..bc24d5e0524b00aa9123007190b3dd68689cf1cd 100644 --- a/src/command.c +++ b/src/command.c @@ -2492,7 +2492,7 @@ 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")) || // Force reset (!stricmp(v->name, "fov") && atoi(valstr) == 90) ) return false;