From b823184b97ae092bab1c72cf336dcb4a363545c8 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Wed, 25 Sep 2024 16:39:16 +0900 Subject: [PATCH] Undeclared functions fixed --- es-app/src/guis/GuiMenu.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp index e85c0a298..34bd5b3e0 100644 --- a/es-app/src/guis/GuiMenu.cpp +++ b/es-app/src/guis/GuiMenu.cpp @@ -2492,6 +2492,8 @@ std::vector GuiMenu::getHelpPrompts() return prompts; } +#if defined(__RETRODECK__) + void GuiMenu::openRetroDeckClassicConfigurator() { // Launch the configurator.sh script @@ -2517,3 +2519,5 @@ void GuiMenu::openRetroDeckGodotConfigurator() int result = Utils::Platform::launchGameUnix(command, startDirectory, runInBackground); // You can add any checks for the script's outcome here. } + +#endif