summaryrefslogtreecommitdiff
path: root/Source/Android/app/src
diff options
context:
space:
mode:
authorsigmabeta <sigmabeta@users.noreply.github.com>2016-01-25 08:58:20 -0500
committersigmabeta <sigmabeta@users.noreply.github.com>2016-01-25 09:28:57 -0500
commit28bcd2636b39eee57fd77152b575069a91e7b6b7 (patch)
tree741e8a9e59ab406e41af49116977c74de3630e34 /Source/Android/app/src
parent96e7f774ae8fccc94a9ebda7d090b1a251e41fd4 (diff)
Fix CPU Core selection on x86-64 devices (really, just the Android emulator)
Diffstat (limited to 'Source/Android/app/src')
-rw-r--r--Source/Android/app/src/arm/res/values/arrays.xml16
-rw-r--r--Source/Android/app/src/arm/res/values/strings.xml5
-rw-r--r--Source/Android/app/src/main/res/values/arrays.xml41
-rw-r--r--Source/Android/app/src/x86_64/res/values/arrays.xml4
-rw-r--r--Source/Android/app/src/x86_64/res/values/strings.xml5
5 files changed, 2 insertions, 69 deletions
diff --git a/Source/Android/app/src/arm/res/values/arrays.xml b/Source/Android/app/src/arm/res/values/arrays.xml
deleted file mode 100644
index a98f723b24..0000000000
--- a/Source/Android/app/src/arm/res/values/arrays.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<!-- All lists for ListPreference keys/values are placed here -->
-<resources>
-
- <!-- New UI CPU Core selection - ARM32 -->
- <string-array name="string_emu_cores" translatable="false">
- <item>@string/interpreter</item>
- <item>@string/jit_arm_recompiler</item>
- </string-array>
- <string-array name="int_emu_cores" translatable="false">
- <item>0</item>
- <item>3</item>
- </string-array>
-
-</resources> \ No newline at end of file
diff --git a/Source/Android/app/src/arm/res/values/strings.xml b/Source/Android/app/src/arm/res/values/strings.xml
deleted file mode 100644
index ec82295355..0000000000
--- a/Source/Android/app/src/arm/res/values/strings.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <!-- Title of the app -->
- <string name="title_new_ui">Dolphin ARM32</string>
-</resources> \ No newline at end of file
diff --git a/Source/Android/app/src/main/res/values/arrays.xml b/Source/Android/app/src/main/res/values/arrays.xml
index c7299780c6..bf2afc4527 100644
--- a/Source/Android/app/src/main/res/values/arrays.xml
+++ b/Source/Android/app/src/main/res/values/arrays.xml
@@ -2,47 +2,6 @@
<!-- All lists for ListPreference keys/values are placed here -->
<resources>
-
- <!-- CPU core selection - X86_64 -->
- <string-array name="emuCoreEntriesX86_64" translatable="false">
- <item>@string/interpreter</item>
- <item>@string/jit64_recompiler</item>
- <item>@string/jitil_recompiler</item>
- </string-array>
- <integer-array name="emuCoreValuesX86_64" translatable="false">
- <item>0</item>
- <item>1</item>
- <item>2</item>
- </integer-array>
-
- <!-- CPU core selection - ARM -->
- <string-array name="emuCoreEntriesARM" translatable="false">
- <item>@string/interpreter</item>
- <item>@string/jit_arm_recompiler</item>
- </string-array>
- <integer-array name="emuCoreValuesARM" translatable="false">
- <item>0</item>
- <item>3</item>
- </integer-array>
-
- <!-- CPU core selection - ARM64 -->
- <string-array name="emuCoreEntriesARM64" translatable="false">
- <item>@string/interpreter</item>
- <item>@string/jit_arm64_recompiler</item>
- </string-array>
- <integer-array name="emuCoreValuesARM64" translatable="false">
- <item>0</item>
- <item>4</item>
- </integer-array>
-
- <!-- CPU core selection - Other -->
- <string-array name="emuCoreEntriesOther" translatable="false">
- <item>@string/interpreter</item>
- </string-array>
- <integer-array name="emuCoreValuesOther" translatable="false">
- <item>0</item>
- </integer-array>
-
<!-- New UI CPU Core selection - Default -->
<string-array name="string_emu_cores" translatable="false">
<item>@string/interpreter</item>
diff --git a/Source/Android/app/src/x86_64/res/values/arrays.xml b/Source/Android/app/src/x86_64/res/values/arrays.xml
index a6eeff8c60..d4c65b9b63 100644
--- a/Source/Android/app/src/x86_64/res/values/arrays.xml
+++ b/Source/Android/app/src/x86_64/res/values/arrays.xml
@@ -9,10 +9,10 @@
<item>@string/jit64_recompiler</item>
<item>@string/jitil_recompiler</item>
</string-array>
- <string-array name="int_emu_cores" translatable="false">
+ <integer-array name="int_emu_cores" translatable="false">
<item>0</item>
<item>1</item>
<item>2</item>
- </string-array>
+ </integer-array>
</resources> \ No newline at end of file
diff --git a/Source/Android/app/src/x86_64/res/values/strings.xml b/Source/Android/app/src/x86_64/res/values/strings.xml
deleted file mode 100644
index ec82295355..0000000000
--- a/Source/Android/app/src/x86_64/res/values/strings.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <!-- Title of the app -->
- <string name="title_new_ui">Dolphin ARM32</string>
-</resources> \ No newline at end of file