2013-10-11 17:41:22 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2013-10-17 01:46:14 -04:00
|
|
|
|
|
|
|
<!-- Configuration Style -->
|
2013-10-11 17:41:22 -04:00
|
|
|
<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>
|
|
|
|
|
2013-10-17 01:46:14 -04:00
|
|
|
<!-- General -->
|
2013-10-11 17:41:22 -04:00
|
|
|
<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>
|
2015-07-03 19:27:16 +02:00
|
|
|
</PreferenceScreen>
|