diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/mutex.h | 2 | ||||
-rw-r--r-- | src/utils/physfsrwops.h | 2 | ||||
-rw-r--r-- | src/utils/process.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/mutex.h b/src/utils/mutex.h index 116aa0b21..37c889e02 100644 --- a/src/utils/mutex.h +++ b/src/utils/mutex.h @@ -25,7 +25,7 @@ #include "logger.h" -#include <SDL/SDL_thread.h> +#include <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 08e7c45e8..fb0285e0a 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/SDL.h> +#include <SDL.h> #include "utils/physfstools.h" diff --git a/src/utils/process.cpp b/src/utils/process.cpp index f042e5f66..4a447848c 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/SDL_screenkeyboard.h> +#include <SDL_screenkeyboard.h> bool openBrowser(std::string url) { SDL_ANDROID_OpenBrowser(replaceAll(url, " ", "").c_str()); |