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.
This commit is contained in:
JosJuice
2021-04-25 17:08:10 +02:00
parent 5da85f3a25
commit a2c8050eba
2 changed files with 8 additions and 8 deletions

View File

@ -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>