mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(Android frontend) Don't have to set input settings anymore during detectDevice
time
This commit is contained in:
parent
2f3af72501
commit
b25d6a5c25
@ -224,8 +224,6 @@ public final class MainMenuFragment extends PreferenceListFragment implements On
|
||||
SharedPreferences prefs = UserPreferences.getPreferences(ctx);
|
||||
SharedPreferences.Editor edit = prefs.edit();
|
||||
edit.putString("video_refresh_rate", Double.toString(60.00d));
|
||||
edit.putBoolean("input_overlay_enable", false);
|
||||
edit.putBoolean("input_autodetect_enable", true);
|
||||
edit.putBoolean("audio_latency_auto", true);
|
||||
edit.commit();
|
||||
UserPreferences.updateConfigFile(ctx);
|
||||
@ -246,8 +244,6 @@ public final class MainMenuFragment extends PreferenceListFragment implements On
|
||||
{
|
||||
SharedPreferences prefs = UserPreferences.getPreferences(ctx);
|
||||
SharedPreferences.Editor edit = prefs.edit();
|
||||
edit.putBoolean("input_overlay_enable", false);
|
||||
edit.putBoolean("input_autodetect_enable", true);
|
||||
edit.putBoolean("audio_latency_auto", false);
|
||||
edit.commit();
|
||||
UserPreferences.updateConfigFile(ctx);
|
||||
|
Loading…
x
Reference in New Issue
Block a user