diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-11-02 13:34:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-11-02 13:34:11 +0300 |
commit | ce08e67ca1d83e4413a0eec3fd034b2a59a4b376 (patch) | |
tree | 4e2c72b4c3dea7f4be028a343993e78daf1b1666 /src/utils/physfstools.cpp | |
parent | 4bdbe020babba16748c69bc2694497fefae6ef2d (diff) | |
download | plus-ce08e67ca1d83e4413a0eec3fd034b2a59a4b376.tar.gz plus-ce08e67ca1d83e4413a0eec3fd034b2a59a4b376.tar.bz2 plus-ce08e67ca1d83e4413a0eec3fd034b2a59a4b376.tar.xz plus-ce08e67ca1d83e4413a0eec3fd034b2a59a4b376.zip |
fix compilation on Android.
Diffstat (limited to 'src/utils/physfstools.cpp')
-rw-r--r-- | src/utils/physfstools.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils/physfstools.cpp b/src/utils/physfstools.cpp index 36131759b..325f7cddc 100644 --- a/src/utils/physfstools.cpp +++ b/src/utils/physfstools.cpp @@ -23,6 +23,10 @@ #include <iostream> #include <unistd.h> +#ifdef ANDROID +#include "utils/paths.h" +#endif + #include "localconsts.h" const char *dirSeparator = nullptr; |