Compare commits

...

3 commits

Author SHA1 Message Date
XargonWan 7e5d46da68 Changed Configurators names and order in the main menu
Some checks are pending
Build ES-DE / Building_RetroDECK-ES-DE (push) Waiting to run
2024-12-01 22:49:00 +09:00
XargonWan f47bb09fa8 LOGGER: fixed log file not flushed 2024-12-01 22:47:12 +09:00
XargonWan 44fb412e3d BUILD_LOCALLY: added sudo to make install 2024-12-01 22:46:56 +09:00
3 changed files with 9 additions and 4 deletions

View file

@ -2,4 +2,4 @@
# WARNING: run this script from the project root folder, not from here!!
cmake -DRETRODECK=on -DCMAKE_INSTALL_PREFIX=/app . && make && make install
cmake -DRETRODECK=on -DCMAKE_INSTALL_PREFIX=/app . && make && sudo make install

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

View file

@ -139,6 +139,10 @@ Log::~Log()
sFile << mOutStringStream.str();
#if defined(RETRODECK)
sFile.flush();
#endif
#if defined(__ANDROID__)
if (mMessageLevel == LogError) {
__android_log_print(ANDROID_LOG_ERROR, ANDROID_APPLICATION_ID, "%s",