Skip to content

Commit

Permalink
Changed Configurators names and order in the main menu
Browse files Browse the repository at this point in the history
  • Loading branch information
XargonWan committed Dec 1, 2024
1 parent f47bb09 commit 7e5d46d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions es-app/src/guis/GuiMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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(); });
addEntry(_("RETRODECK CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckGodotConfigurator(); });

if (isFullUI)
addEntry(_("RETRODECK GODOT CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckGodotConfigurator(); });
addEntry(_("RETRODECK LEGACY CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); });

if (isFullUI)
addEntry(_("ES-DE CONFIGURATIONS"), mMenuColorPrimary, true, [this] { openESDEConfiguration(); });
Expand Down

0 comments on commit 7e5d46d

Please sign in to comment.