From 2af327dcf94c6d25fae5601ebc55ed065c9a2ac6 Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Sun, 20 Mar 2016 10:44:36 +0100 Subject: [PATCH] Make sure android includes the right headers for System.cpp too Hopefully. --- src/modules/system/System.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/system/System.cpp b/src/modules/system/System.cpp index cd71bdbde..f63b640f2 100755 --- a/src/modules/system/System.cpp +++ b/src/modules/system/System.cpp @@ -26,20 +26,20 @@ #include #elif defined(LOVE_IOS) #include "common/ios.h" -#elif defined(LOVE_ANDROID) -#include "common/android.h" -#elif defined(LOVE_LINUX) +#elif defined(LOVE_LINUX) || defined(LOVE_ANDROID) #include -//#include -//#include #include #include +#include #elif defined(LOVE_WINDOWS) #include "common/utf8.h" #include #include #pragma comment(lib, "shell32.lib") #endif +#if defined(LOVE_ANDROID) +#include "common/android.h" +#endif #if defined(LOVE_LINUX) static void sigchld_handler(int sig)