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 324cf9b019
commit c623504308

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);