diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2019-05-01 17:56:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-01 17:56:19 +0200 |
| commit | f4d7b537cc6bc5427c4214cccfb8b4f6734783aa (patch) | |
| tree | 495117661e4123ce1ba0974852437f7b817da8b9 /Source/Android/app | |
| parent | bec85a09623e11493d58a0fcb5acb898604c0cd7 (diff) | |
| parent | 20cc4508f0bbb65d1af773ad4ef2e9c312dc37d7 (diff) | |
Merge pull request #7958 from Craftyawesome/cpu-emulation-order
Re-order cpu emulation options from fastest to slowest
Diffstat (limited to 'Source/Android/app')
| -rw-r--r-- | Source/Android/app/src/main/res/values/arrays.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/Android/app/src/main/res/values/arrays.xml b/Source/Android/app/src/main/res/values/arrays.xml index 32373a882b..e4e32e1a7f 100644 --- a/Source/Android/app/src/main/res/values/arrays.xml +++ b/Source/Android/app/src/main/res/values/arrays.xml @@ -5,32 +5,32 @@ <!-- New UI CPU Core selection - Default --> <string-array name="emuCoresEntriesX86_64" translatable="false"> - <item>Interpreter</item> - <item>Cached Interpreter</item> <item>JIT Recompiler</item> + <item>Cached Interpreter</item> + <item>Interpreter</item> </string-array> <integer-array name="emuCoresValuesX86_64" translatable="false"> - <item>0</item> - <item>5</item> <item>1</item> + <item>5</item> + <item>0</item> </integer-array> <string-array name="emuCoresEntriesARM64" translatable="false"> - <item>Interpreter</item> - <item>Cached Interpreter</item> <item>JIT ARM64 Recompiler</item> + <item>Cached Interpreter</item> + <item>Interpreter</item> </string-array> <integer-array name="emuCoresValuesARM64" translatable="false"> - <item>0</item> - <item>5</item> <item>4</item> + <item>5</item> + <item>0</item> </integer-array> <string-array name="emuCoresEntriesGeneric" translatable="false"> - <item>Interpreter</item> <item>Cached Interpreter</item> + <item>Interpreter</item> </string-array> <integer-array name="emuCoresValuesGeneric" translatable="false"> - <item>0</item> <item>5</item> + <item>0</item> </integer-array> <!-- GameCube System Languages --> |
