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

This commit is contained in:
bunnei 2019-07-24 15:19:30 -04:00
parent af47702d0c
commit e30d9034a5

View File

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