summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2026-02-23 19:24:58 +0100
committerJosJuice <josjuice@gmail.com>2026-02-23 19:24:58 +0100
commit99d82829c84880402784ae1ace684e0f6e635ef6 (patch)
tree9dff5afcfc9fefe81430f43c1025ff06ba8e1fc5 /Source
parentffa03fec786cc08baa99ad9c34b042056d75c779 (diff)
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.
Diffstat (limited to 'Source')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt
index 06680cdf44..b6a03e6b61 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/features/settings/model/BooleanSetting.kt
@@ -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