summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2021-04-25 17:08:10 +0200
committerJosJuice <josjuice@gmail.com>2021-04-25 17:19:50 +0200
commita2c8050ebafca2b74df2b86b8b490221beaf19b7 (patch)
tree298fd7d2c618506fbfb75567cce56c9e78a9d457 /Source/Android
parent5da85f3a25d1a8ee71c11f1930822be869d7d952 (diff)
DolphinQt/Android: Unify the JIT naming scheme
I think the AArch64 JIT has come far enough that it doesn't have to be called experimental anymore. I'm also labeling the x86-64 JIT as x86-64 for consistence with the AArch64 JIT. This will especially be helpful if we start supporting AArch64 on macOS, as AArch64 macOS can run both the x86-64 JIT and the AArch64 JIT depending on whether you enable Rosetta 2.
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/app/src/main/res/values/arrays.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Android/app/src/main/res/values/arrays.xml b/Source/Android/app/src/main/res/values/arrays.xml
index b8371321ec..63cf58ed57 100644
--- a/Source/Android/app/src/main/res/values/arrays.xml
+++ b/Source/Android/app/src/main/res/values/arrays.xml
@@ -5,9 +5,9 @@
<!-- New UI CPU Core selection - Default -->
<string-array name="emuCoresEntriesX86_64" translatable="false">
- <item>JIT Recompiler</item>
- <item>Cached Interpreter</item>
- <item>Interpreter</item>
+ <item>JIT Recompiler for x86-64 (recommended)</item>
+ <item>Cached Interpreter (slower)</item>
+ <item>Interpreter (slowest)</item>
</string-array>
<integer-array name="emuCoresValuesX86_64" translatable="false">
<item>1</item>
@@ -15,9 +15,9 @@
<item>0</item>
</integer-array>
<string-array name="emuCoresEntriesARM64" translatable="false">
- <item>JIT ARM64 Recompiler</item>
- <item>Cached Interpreter</item>
- <item>Interpreter</item>
+ <item>JIT Recompiler for ARM64 (recommended)</item>
+ <item>Cached Interpreter (slower)</item>
+ <item>Interpreter (slowest)</item>
</string-array>
<integer-array name="emuCoresValuesARM64" translatable="false">
<item>4</item>