From 7e5d46da689c348d1f7003a256c09095fe8d21fc Mon Sep 17 00:00:00 2001 From: XargonWan Date: Sun, 1 Dec 2024 22:49:00 +0900 Subject: [PATCH] Changed Configurators names and order in the main menu --- es-app/src/guis/GuiMenu.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index 143890fbe..c334ea1ed 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -59,11 +59,12 @@ GuiMenu::GuiMenu() addEntry(_("SCRAPER"), mMenuColorPrimary, true, [this] { openScraperOptions(); }); #if defined(RETRODECK) - if (isFullUI) - addEntry(_("RETRODECK CLASSIC CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); }); if (isFullUI) - addEntry(_("RETRODECK GODOT CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckGodotConfigurator(); }); + addEntry(_("RETRODECK CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckGodotConfigurator(); }); + + if (isFullUI) + addEntry(_("RETRODECK LEGACY CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); }); if (isFullUI) addEntry(_("ES-DE CONFIGURATIONS"), mMenuColorPrimary, true, [this] { openESDEConfiguration(); });