diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-03 12:29:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-03 12:29:42 +0300 |
commit | 5614d6765535273d25cbe3de131a4dbd0e4926f4 (patch) | |
tree | 34dae236d34f0a374be59df6e93739d00624a92e /src/utils | |
parent | 015f40eeab3c01e3173968059a95fd76cf23fd3b (diff) | |
download | plus-5614d6765535273d25cbe3de131a4dbd0e4926f4.tar.gz plus-5614d6765535273d25cbe3de131a4dbd0e4926f4.tar.bz2 plus-5614d6765535273d25cbe3de131a4dbd0e4926f4.tar.xz plus-5614d6765535273d25cbe3de131a4dbd0e4926f4.zip |
fix SDL includes.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/copynpaste.cpp | 2 | ||||
-rw-r--r-- | src/utils/mutex.h | 2 | ||||
-rw-r--r-- | src/utils/physfsrwops.h | 2 | ||||
-rw-r--r-- | src/utils/process.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp index a28c7889e..db14dd3c7 100644 --- a/src/utils/copynpaste.cpp +++ b/src/utils/copynpaste.cpp @@ -35,7 +35,7 @@ #include "utils/copynpaste.h" -#include <SDL_syswm.h> +#include <SDL/SDL_syswm.h> #include "debug.h" diff --git a/src/utils/mutex.h b/src/utils/mutex.h index 37c889e02..116aa0b21 100644 --- a/src/utils/mutex.h +++ b/src/utils/mutex.h @@ -25,7 +25,7 @@ #include "logger.h" -#include <SDL_thread.h> +#include <SDL/SDL_thread.h> /** * A mutex provides mutual exclusion of access to certain data that is diff --git a/src/utils/physfsrwops.h b/src/utils/physfsrwops.h index fb0285e0a..08e7c45e8 100644 --- a/src/utils/physfsrwops.h +++ b/src/utils/physfsrwops.h @@ -25,7 +25,7 @@ #ifndef UTILS_PHYSFSRWOPS_H #define UTILS_PHYSFSRWOPS_H -#include <SDL.h> +#include <SDL/SDL.h> #include "utils/physfstools.h" diff --git a/src/utils/process.cpp b/src/utils/process.cpp index 4a447848c..f042e5f66 100644 --- a/src/utils/process.cpp +++ b/src/utils/process.cpp @@ -238,7 +238,7 @@ bool openBrowser(std::string url) nullptr, nullptr, SW_SHOWNORMAL)) > 32; } #elif defined ANDROID -#include <SDL_screenkeyboard.h> +#include <SDL/SDL_screenkeyboard.h> bool openBrowser(std::string url) { SDL_ANDROID_OpenBrowser(replaceAll(url, " ", "").c_str()); |