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:
JosJuice 2026-02-23 19:24:58 +01:00
parent ffa03fec78
commit 99d82829c8

View File

@ -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