Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Explicitly set the defaults for the CPU settings.
  • Loading branch information
lioncash committed Sep 13, 2013
1 parent 0490d7d commit 7a15159
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions Source/Android/res/xml/cpu_prefs.xml
@@ -1,18 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<!-- CPU Settings -->
<!-- CPU Settings -->
<CheckBoxPreference
android:key="dualCorePref"
android:summary="@string/dual_core_descrip"
android:title="@string/dual_core" />

android:defaultValue="false"
android:key="dualCorePref"
android:summary="@string/dual_core_descrip"
android:title="@string/dual_core" />

<ListPreference
android:key="cpuCorePref"
android:summary="@string/emu_core_to_use"
android:title="@string/cpu_core" />

<CheckBoxPreference
android:key="fastmemPref"
android:summary="@string/fastmem_desc"
android:title="@string/fastmem" />

android:defaultValue="false"
android:key="fastmemPref"
android:summary="@string/fastmem_desc"
android:title="@string/fastmem" />

</PreferenceScreen>

0 comments on commit 7a15159

Please sign in to comment.