Changed Configurators names and order in the main menu
Some checks are pending
Build ES-DE / Building_RetroDECK-ES-DE (push) Waiting to run

This commit is contained in:
XargonWan 2024-12-01 22:49:00 +09:00
parent f47bb09fa8
commit 7e5d46da68

View file

@ -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(); });