mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Update shown CPU cores in the Android UI.
Only show the JIT cores on x86_64(Will have its own issues once we reach that point) Show AArch64 JIT if running on a AArch64 device(Good luck with that for now. Future proofing though)
This commit is contained in:
@ -3,13 +3,13 @@
|
||||
<!-- All lists for ListPreference keys/values are placed here -->
|
||||
<resources>
|
||||
|
||||
<!-- CPU core selection - X86 -->
|
||||
<string-array name="emuCoreEntriesX86" translatable="false">
|
||||
<!-- 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>
|
||||
<string-array name="emuCoreValuesX86" translatable="false">
|
||||
<string-array name="emuCoreValuesX86_64" translatable="false">
|
||||
<item>0</item>
|
||||
<item>1</item>
|
||||
<item>2</item>
|
||||
@ -24,6 +24,16 @@
|
||||
<item>0</item>
|
||||
<item>3</item>
|
||||
</string-array>
|
||||
|
||||
<!-- CPU core selection - ARM64 -->
|
||||
<string-array name="emuCoreEntriesARM64" translatable="false">
|
||||
<item>@string/interpreter</item>
|
||||
<item>@string/jit_arm64_recompiler</item>
|
||||
</string-array>
|
||||
<string-array name="emuCoreValuesARM64" translatable="false">
|
||||
<item>0</item>
|
||||
<item>4</item>
|
||||
</string-array>
|
||||
|
||||
<!-- CPU core selection - Other -->
|
||||
<string-array name="emuCoreEntriesOther" translatable="false">
|
||||
|
Reference in New Issue
Block a user