From e3d483e7c59c1454d76c7c0980799993504c8fcb Mon Sep 17 00:00:00 2001 From: LillyJadeKatrin Date: Thu, 2 May 2024 08:25:33 -0400 Subject: [PATCH] Show Achievements in Menu Bar always Previously the Achievements option would only show up if achievements were already enabled, requiring users to manually create a config file in the file system; this now makes it visible no matter what. --- Source/Core/DolphinQt/MenuBar.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 46bd68b6d4..2cb541961f 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -276,12 +276,9 @@ void MenuBar::AddToolsMenu() tools_menu->addSeparator(); #ifdef USE_RETRO_ACHIEVEMENTS - if (Config::Get(Config::RA_ENABLED)) - { - tools_menu->addAction(tr("Achievements"), this, [this] { emit ShowAchievementsWindow(); }); + tools_menu->addAction(tr("Achievements"), this, [this] { emit ShowAchievementsWindow(); }); - tools_menu->addSeparator(); - } + tools_menu->addSeparator(); #endif // USE_RETRO_ACHIEVEMENTS QMenu* gc_ipl = tools_menu->addMenu(tr("Load GameCube Main Menu"));