android: native: Ensure game config is re-loaded before starting.

This commit is contained in:
bunnei 2019-07-24 15:19:30 -04:00 committed by xperia64
parent ec5baf2edd
commit 95e1c4ac13

View File

@ -99,6 +99,11 @@ static int RunCitra(const std::string& filepath) {
InputManager::Shutdown();
}
{
// Forces a config reload on game boot, if the user changed settings in the UI
Config config;
}
Settings::Apply();
InputManager::Init();
window = std::make_unique<EmuWindow_Android>(s_surf);