mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-12-04 20:05:38 +00:00
Compare commits
No commits in common. "7e5d46da689c348d1f7003a256c09095fe8d21fc" and "f64cbe8024491298e4bc7e942be0774097e6b805" have entirely different histories.
7e5d46da68
...
f64cbe8024
|
@ -2,4 +2,4 @@
|
|||
|
||||
# WARNING: run this script from the project root folder, not from here!!
|
||||
|
||||
cmake -DRETRODECK=on -DCMAKE_INSTALL_PREFIX=/app . && make && sudo make install
|
||||
cmake -DRETRODECK=on -DCMAKE_INSTALL_PREFIX=/app . && make && make install
|
|
@ -59,12 +59,11 @@ 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 CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckGodotConfigurator(); });
|
||||
|
||||
if (isFullUI)
|
||||
addEntry(_("RETRODECK LEGACY CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); });
|
||||
addEntry(_("RETRODECK GODOT CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckGodotConfigurator(); });
|
||||
|
||||
if (isFullUI)
|
||||
addEntry(_("ES-DE CONFIGURATIONS"), mMenuColorPrimary, true, [this] { openESDEConfiguration(); });
|
||||
|
|
|
@ -139,10 +139,6 @@ 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",
|
||||
|
|
Loading…
Reference in a new issue