mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Android: robustness if locale failed to be detected at start
This commit is contained in:
parent
2491f16f85
commit
33642b47b2
@ -423,7 +423,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
|||||||
Log.v(TAG, "onConfigurationChanged()");
|
Log.v(TAG, "onConfigurationChanged()");
|
||||||
super.onConfigurationChanged(newConfig);
|
super.onConfigurationChanged(newConfig);
|
||||||
|
|
||||||
if (!mCurrentLocale.equals(newConfig.locale)) {
|
if (mCurrentLocale == null || !mCurrentLocale.equals(newConfig.locale)) {
|
||||||
mCurrentLocale = newConfig.locale;
|
mCurrentLocale = newConfig.locale;
|
||||||
SDLActivity.onNativeLocaleChanged();
|
SDLActivity.onNativeLocaleChanged();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user