RetroArch/android/phoenix/res/xml/general_preferences.xml
twinaphex 8dfc9241c6 (Android) Remove a bunch of dead code in Android Java menu - this
should just be a (very dumb) launcher from now on
2015-07-03 19:27:16 +02:00

27 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Configuration Style -->
<PreferenceCategory android:title="@string/config_style" >
<CheckBoxPreference
android:defaultValue="true"
android:key="global_config_enable"
android:summary="@string/global_config_desc"
android:title="@string/global_config" />
</PreferenceCategory>
<!-- General -->
<PreferenceCategory android:title="@string/general" >
<CheckBoxPreference
android:defaultValue="true"
android:key="savestate_auto_load"
android:summary="@string/auto_load_state_desc"
android:title="@string/auto_load_state" />
<CheckBoxPreference
android:defaultValue="false"
android:key="savestate_auto_save"
android:summary="@string/auto_save_state_desc"
android:title="@string/auto_save_state" />
</PreferenceCategory>
</PreferenceScreen>