Skip to content

Commit

Permalink
FullscreenUI: Use effective value for achievement options enable
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Jan 29, 2025
1 parent d314b25 commit 0d9e6bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/fullscreen_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5897,7 +5897,7 @@ void FullscreenUI::DrawAchievementsSettingsPage()
FSUI_CSTR("When enabled and logged in, DuckStation will scan for achievements on startup."),
"Cheevos", "Enabled", false);

const bool enabled = bsi->GetBoolValue("Cheevos", "Enabled", false);
const bool enabled = GetEffectiveBoolSetting(bsi, "Cheevos", "Enabled", false);

if (DrawToggleSetting(
bsi, FSUI_ICONSTR(ICON_FA_HARD_HAT, "Hardcore Mode"),
Expand Down

0 comments on commit 0d9e6bd

Please sign in to comment.