summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main
diff options
context:
space:
mode:
authorCraftyawesome <craftyawesome.ak@gmail.com>2019-04-04 09:10:04 -0400
committerCraftyawesome <craftyawesome.ak@gmail.com>2019-04-04 10:51:12 -0400
commit20cc4508f0bbb65d1af773ad4ef2e9c312dc37d7 (patch)
tree8096ea9acb1d33e7a439c39f0bd81d4151126c9f /Source/Android/app/src/main
parentbfde5b931e542ec2b8a5eee72d4794515955c7e8 (diff)
Re-order cpu emulation options from fastest to slowest
Based on https://bugs.dolphin-emu.org/issues/11658 Update arrays.xml
Diffstat (limited to 'Source/Android/app/src/main')
-rw-r--r--Source/Android/app/src/main/res/values/arrays.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/Android/app/src/main/res/values/arrays.xml b/Source/Android/app/src/main/res/values/arrays.xml
index 32373a882b..e4e32e1a7f 100644
--- a/Source/Android/app/src/main/res/values/arrays.xml
+++ b/Source/Android/app/src/main/res/values/arrays.xml
@@ -5,32 +5,32 @@
<!-- New UI CPU Core selection - Default -->
<string-array name="emuCoresEntriesX86_64" translatable="false">
- <item>Interpreter</item>
- <item>Cached Interpreter</item>
<item>JIT Recompiler</item>
+ <item>Cached Interpreter</item>
+ <item>Interpreter</item>
</string-array>
<integer-array name="emuCoresValuesX86_64" translatable="false">
- <item>0</item>
- <item>5</item>
<item>1</item>
+ <item>5</item>
+ <item>0</item>
</integer-array>
<string-array name="emuCoresEntriesARM64" translatable="false">
- <item>Interpreter</item>
- <item>Cached Interpreter</item>
<item>JIT ARM64 Recompiler</item>
+ <item>Cached Interpreter</item>
+ <item>Interpreter</item>
</string-array>
<integer-array name="emuCoresValuesARM64" translatable="false">
- <item>0</item>
- <item>5</item>
<item>4</item>
+ <item>5</item>
+ <item>0</item>
</integer-array>
<string-array name="emuCoresEntriesGeneric" translatable="false">
- <item>Interpreter</item>
<item>Cached Interpreter</item>
+ <item>Interpreter</item>
</string-array>
<integer-array name="emuCoresValuesGeneric" translatable="false">
- <item>0</item>
<item>5</item>
+ <item>0</item>
</integer-array>
<!-- GameCube System Languages -->