Fix CPU Core selection on x86-64 devices (really, just the Android emulator)
This commit is contained in:
parent
96e7f774ae
commit
28bcd2636b
|
@ -1,16 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
|
|
||||||
<!-- All lists for ListPreference keys/values are placed here -->
|
|
||||||
<resources>
|
|
||||||
|
|
||||||
<!-- New UI CPU Core selection - ARM32 -->
|
|
||||||
<string-array name="string_emu_cores" translatable="false">
|
|
||||||
<item>@string/interpreter</item>
|
|
||||||
<item>@string/jit_arm_recompiler</item>
|
|
||||||
</string-array>
|
|
||||||
<string-array name="int_emu_cores" translatable="false">
|
|
||||||
<item>0</item>
|
|
||||||
<item>3</item>
|
|
||||||
</string-array>
|
|
||||||
|
|
||||||
</resources>
|
|
|
@ -1,5 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<!-- Title of the app -->
|
|
||||||
<string name="title_new_ui">Dolphin ARM32</string>
|
|
||||||
</resources>
|
|
|
@ -2,47 +2,6 @@
|
||||||
|
|
||||||
<!-- All lists for ListPreference keys/values are placed here -->
|
<!-- All lists for ListPreference keys/values are placed here -->
|
||||||
<resources>
|
<resources>
|
||||||
|
|
||||||
<!-- 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>
|
|
||||||
<integer-array name="emuCoreValuesX86_64" translatable="false">
|
|
||||||
<item>0</item>
|
|
||||||
<item>1</item>
|
|
||||||
<item>2</item>
|
|
||||||
</integer-array>
|
|
||||||
|
|
||||||
<!-- CPU core selection - ARM -->
|
|
||||||
<string-array name="emuCoreEntriesARM" translatable="false">
|
|
||||||
<item>@string/interpreter</item>
|
|
||||||
<item>@string/jit_arm_recompiler</item>
|
|
||||||
</string-array>
|
|
||||||
<integer-array name="emuCoreValuesARM" translatable="false">
|
|
||||||
<item>0</item>
|
|
||||||
<item>3</item>
|
|
||||||
</integer-array>
|
|
||||||
|
|
||||||
<!-- CPU core selection - ARM64 -->
|
|
||||||
<string-array name="emuCoreEntriesARM64" translatable="false">
|
|
||||||
<item>@string/interpreter</item>
|
|
||||||
<item>@string/jit_arm64_recompiler</item>
|
|
||||||
</string-array>
|
|
||||||
<integer-array name="emuCoreValuesARM64" translatable="false">
|
|
||||||
<item>0</item>
|
|
||||||
<item>4</item>
|
|
||||||
</integer-array>
|
|
||||||
|
|
||||||
<!-- CPU core selection - Other -->
|
|
||||||
<string-array name="emuCoreEntriesOther" translatable="false">
|
|
||||||
<item>@string/interpreter</item>
|
|
||||||
</string-array>
|
|
||||||
<integer-array name="emuCoreValuesOther" translatable="false">
|
|
||||||
<item>0</item>
|
|
||||||
</integer-array>
|
|
||||||
|
|
||||||
<!-- New UI CPU Core selection - Default -->
|
<!-- New UI CPU Core selection - Default -->
|
||||||
<string-array name="string_emu_cores" translatable="false">
|
<string-array name="string_emu_cores" translatable="false">
|
||||||
<item>@string/interpreter</item>
|
<item>@string/interpreter</item>
|
||||||
|
|
|
@ -9,10 +9,10 @@
|
||||||
<item>@string/jit64_recompiler</item>
|
<item>@string/jit64_recompiler</item>
|
||||||
<item>@string/jitil_recompiler</item>
|
<item>@string/jitil_recompiler</item>
|
||||||
</string-array>
|
</string-array>
|
||||||
<string-array name="int_emu_cores" translatable="false">
|
<integer-array name="int_emu_cores" translatable="false">
|
||||||
<item>0</item>
|
<item>0</item>
|
||||||
<item>1</item>
|
<item>1</item>
|
||||||
<item>2</item>
|
<item>2</item>
|
||||||
</string-array>
|
</integer-array>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
|
@ -1,5 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<!-- Title of the app -->
|
|
||||||
<string name="title_new_ui">Dolphin ARM32</string>
|
|
||||||
</resources>
|
|
Loading…
Reference in New Issue