From b8cc8b05bc8f986b8156bfc35ab3496ad868acb9 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Sat, 28 Dec 2024 00:27:19 +0900 Subject: [PATCH] CONFIGURATOR: put back the legacy one and disabled the new one --- es-app/src/guis/GuiMenu.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index c334ea1ed..7dc7695ec 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -60,11 +60,14 @@ GuiMenu::GuiMenu() #if defined(RETRODECK) - if (isFullUI) - addEntry(_("RETRODECK CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckGodotConfigurator(); }); + // if (isFullUI) + // addEntry(_("RETRODECK CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckGodotConfigurator(); }); + + // if (isFullUI) + // addEntry(_("RETRODECK LEGACY CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); }); if (isFullUI) - addEntry(_("RETRODECK LEGACY CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); }); + addEntry(_("RETRODECK CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); }); if (isFullUI) addEntry(_("ES-DE CONFIGURATIONS"), mMenuColorPrimary, true, [this] { openESDEConfiguration(); });