mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-05 18:02:39 +00:00
Android: Replace log type names map with array
Storing the log type names in a map results in them getting re-sorted by their keys, which doesn't quite give us the sorting we want. In particular, the Achievements category ended up being sorted at R (for RetroAchivements) instead of at A. Every use of the map is just iterating through it, so there's no real reason why it has to be a map anyway.
This commit is contained in:
parent
04c246d11f
commit
ea7928b3cd
7 changed files with 49 additions and 57 deletions
|
@ -29,9 +29,8 @@ jmethodID GetGameFileConstructor();
|
|||
jclass GetGameFileCacheClass();
|
||||
jfieldID GetGameFileCachePointer();
|
||||
|
||||
jclass GetLinkedHashMapClass();
|
||||
jmethodID GetLinkedHashMapInit();
|
||||
jmethodID GetLinkedHashMapPut();
|
||||
jclass GetPairClass();
|
||||
jmethodID GetPairConstructor();
|
||||
|
||||
jclass GetHashMapClass();
|
||||
jmethodID GetHashMapInit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue