summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp2
-rw-r--r--src/maingui.cpp4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index de2b1a7a1..081a76435 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -28,7 +28,7 @@
#endif
#include "debug.h"
-#ifndef UNITTESTS
+#if !defined(UNITTESTS) && !defined(ANDROID)
int main(int argc, char *argv[])
{
return mainGui(argc, argv);
diff --git a/src/maingui.cpp b/src/maingui.cpp
index a59af6cc1..d3b7fe6c0 100644
--- a/src/maingui.cpp
+++ b/src/maingui.cpp
@@ -69,7 +69,11 @@
char *selfName = nullptr;
#ifndef UNITTESTS
+#ifdef ANDROID
+int main(int argc, char *argv[])
+#else
int mainGui(int argc, char *argv[])
+#endif
{
#if defined(__MINGW32__)
// load mingw crash handler. Won't fail if dll is not present.