mirror of
https://github.com/libretro/RetroArch
synced 2025-02-15 09:40:11 +00:00
27 lines
1.0 KiB
XML
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>
|