[Android] Explicitly set the defaults for the CPU settings.

This commit is contained in:
Lioncash 2013-09-13 00:29:59 -04:00
parent 0490d7d59c
commit 7a15159c34
1 changed files with 12 additions and 9 deletions

View File

@ -2,17 +2,20 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<!-- CPU Settings --> <!-- CPU Settings -->
<CheckBoxPreference <CheckBoxPreference
android:key="dualCorePref" android:defaultValue="false"
android:summary="@string/dual_core_descrip" android:key="dualCorePref"
android:title="@string/dual_core" /> android:summary="@string/dual_core_descrip"
android:title="@string/dual_core" />
<ListPreference <ListPreference
android:key="cpuCorePref" android:key="cpuCorePref"
android:summary="@string/emu_core_to_use" android:summary="@string/emu_core_to_use"
android:title="@string/cpu_core" /> android:title="@string/cpu_core" />
<CheckBoxPreference <CheckBoxPreference
android:key="fastmemPref" android:defaultValue="false"
android:summary="@string/fastmem_desc" android:key="fastmemPref"
android:title="@string/fastmem" /> android:summary="@string/fastmem_desc"
android:title="@string/fastmem" />
</PreferenceScreen> </PreferenceScreen>