(Shield) Autoconfigures 60Hz refreshrate, input ovelay disable

and input autodetect enable correctly now
This commit is contained in:
twinaphex 2013-08-05 23:56:59 +02:00
parent c84a61d83f
commit 9a2ca1eb9e

View File

@ -303,6 +303,12 @@ public class RetroArch extends Activity implements
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getBaseContext());
SharedPreferences.Editor edit = prefs.edit();
edit.putString("video_refresh_rate", Double.valueOf(60.00d).toString());
edit.putBoolean("input_overlay_enable", false);
edit.putBoolean("input_autodetect_enable", true);
edit.commit();
}
})
.setNegativeButton("No", null);