mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
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:
@ -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>
|
||||
|
Reference in New Issue
Block a user