mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-21 17:49:58 -05:00
Android: Fix defaults for RetroAchievements settings
Default values for settings need to be the same in Kotlin and C++, otherwise settings that haven't been changed by the user will be shown as having one value in the Android GUI but treated as having a different value in the core.
This commit is contained in:
parent
ffa03fec78
commit
99d82829c8
|
|
@ -895,7 +895,7 @@ enum class BooleanSetting(
|
|||
Settings.FILE_ACHIEVEMENTS,
|
||||
Settings.SECTION_ACHIEVEMENTS,
|
||||
"HardcoreEnabled",
|
||||
false
|
||||
true
|
||||
),
|
||||
ACHIEVEMENTS_UNOFFICIAL_ENABLED(
|
||||
Settings.FILE_ACHIEVEMENTS,
|
||||
|
|
@ -931,7 +931,7 @@ enum class BooleanSetting(
|
|||
Settings.FILE_ACHIEVEMENTS,
|
||||
Settings.SECTION_ACHIEVEMENTS,
|
||||
"ProgressEnabled",
|
||||
true
|
||||
false
|
||||
);
|
||||
|
||||
override val isOverridden: Boolean
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user