Merge pull request #127 from libretro/master

don't reinit on audio filter change or color correction
This commit is contained in:
Lior Halphon 2018-11-10 16:18:55 +02:00 committed by GitHub
commit 06ff367fdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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