summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-06-03 21:28:49 +0300
committerAndrei Karas <akaras@inbox.ru>2013-06-03 21:28:49 +0300
commit8315c94fde36046785cf86165021906a49c6d849 (patch)
tree4b5e8ac7263b2fca078da5f1de30df77755924ef /src/utils
parent88e2d16c070f480e1892044f329cd38df298003d (diff)
downloadplus-8315c94fde36046785cf86165021906a49c6d849.tar.gz
plus-8315c94fde36046785cf86165021906a49c6d849.tar.bz2
plus-8315c94fde36046785cf86165021906a49c6d849.tar.xz
plus-8315c94fde36046785cf86165021906a49c6d849.zip
Remove subdir SDL from SDL includes.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/mutex.h2
-rw-r--r--src/utils/physfsrwops.h2
-rw-r--r--src/utils/process.cpp2
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());