From 3d4dcadc47668395ec3c4511a1e02c3f22d9f8e0 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 23 Dec 2023 20:26:33 +0100 Subject: [PATCH] (Android) Disabled command line option parsing as there are no such options on Android --- es-app/src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/es-app/src/main.cpp b/es-app/src/main.cpp index 4ebe44269..f9afa8715 100644 --- a/es-app/src/main.cpp +++ b/es-app/src/main.cpp @@ -563,6 +563,7 @@ int main(int argc, char* argv[]) outputToConsole(); #endif +#if !defined(__ANDROID__) { std::vector arguments; for (int i {0}; i < argc; ++i) @@ -578,6 +579,7 @@ int main(int argc, char* argv[]) } #endif } +#endif if (!Settings::getInstance()->getBool("DebugFlag") && Settings::getInstance()->getBool("DebugMode")) {