[Android] Explicitly set the defaults for the CPU settings.
This commit is contained in:
parent
0490d7d59c
commit
7a15159c34
|
@ -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>
|
Loading…
Reference in New Issue