don't reinit on audio filter change or color correction

This commit is contained in:
radius 2018-11-05 18:59:13 -05:00
parent a39b314378
commit 792b45d5dd
1 changed files with 5 additions and 2 deletions

View File

@ -444,8 +444,11 @@ static void check_variables(bool link)
else
new_model = MODEL_AUTO;
model[0] = new_model;
init_for_current_model(0);
if (new_model != model[0])
{
model[0] = new_model;
init_for_current_model(0);
}
}
}
else