mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-12-12 07:25:39 +00:00
Compare commits
3 commits
f64cbe8024
...
7e5d46da68
Author | SHA1 | Date | |
---|---|---|---|
XargonWan | 7e5d46da68 | ||
XargonWan | f47bb09fa8 | ||
XargonWan | 44fb412e3d |
|
@ -2,4 +2,4 @@
|
||||||
|
|
||||||
# WARNING: run this script from the project root folder, not from here!!
|
# 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
|
|
@ -59,11 +59,12 @@ GuiMenu::GuiMenu()
|
||||||
addEntry(_("SCRAPER"), mMenuColorPrimary, true, [this] { openScraperOptions(); });
|
addEntry(_("SCRAPER"), mMenuColorPrimary, true, [this] { openScraperOptions(); });
|
||||||
|
|
||||||
#if defined(RETRODECK)
|
#if defined(RETRODECK)
|
||||||
if (isFullUI)
|
|
||||||
addEntry(_("RETRODECK CLASSIC CONFIGURATOR"), mMenuColorPrimary, false, [this] { openRetroDeckClassicConfigurator(); });
|
|
||||||
|
|
||||||
if (isFullUI)
|
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)
|
if (isFullUI)
|
||||||
addEntry(_("ES-DE CONFIGURATIONS"), mMenuColorPrimary, true, [this] { openESDEConfiguration(); });
|
addEntry(_("ES-DE CONFIGURATIONS"), mMenuColorPrimary, true, [this] { openESDEConfiguration(); });
|
||||||
|
|
|
@ -139,6 +139,10 @@ Log::~Log()
|
||||||
|
|
||||||
sFile << mOutStringStream.str();
|
sFile << mOutStringStream.str();
|
||||||
|
|
||||||
|
#if defined(RETRODECK)
|
||||||
|
sFile.flush();
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(__ANDROID__)
|
#if defined(__ANDROID__)
|
||||||
if (mMessageLevel == LogError) {
|
if (mMessageLevel == LogError) {
|
||||||
__android_log_print(ANDROID_LOG_ERROR, ANDROID_APPLICATION_ID, "%s",
|
__android_log_print(ANDROID_LOG_ERROR, ANDROID_APPLICATION_ID, "%s",
|
||||||
|
|
Loading…
Reference in a new issue