From: Ingo Ruhnke Date: Wed, 30 Jul 2014 01:11:21 +0000 (+0200) Subject: Fixed SDL2 include, should just be SDL.h X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=7258a832fbaaef2b13be2cb8facbfa4bb33b6fa5;p=supertux.git Fixed SDL2 include, should just be SDL.h --- diff --git a/src/main.cpp b/src/main.cpp index 6acebfd5a..9eac977d9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -#include "SDL2/SDL.h" +#include "SDL.h" #include "supertux/main.hpp" diff --git a/src/video/gl/gl_renderer.cpp b/src/video/gl/gl_renderer.cpp index b16652961..f2cec7e5d 100644 --- a/src/video/gl/gl_renderer.cpp +++ b/src/video/gl/gl_renderer.cpp @@ -20,7 +20,7 @@ #include #include #include -#include "SDL2/SDL.h" +#include "SDL.h" //#include "SDL/SDL.h" //#include "SDL/SDL_opengl.h" diff --git a/src/video/sdl/sdl_renderer.hpp b/src/video/sdl/sdl_renderer.hpp index 1276c1cf6..8e3cd23ec 100644 --- a/src/video/sdl/sdl_renderer.hpp +++ b/src/video/sdl/sdl_renderer.hpp @@ -17,8 +17,7 @@ #ifndef HEADER_SUPERTUX_VIDEO_SDL_RENDERER_HPP #define HEADER_SUPERTUX_VIDEO_SDL_RENDERER_HPP -#include "SDL2/SDL.h" -#include "SDL2/SDL_video.h" +#include "SDL.h" #include "video/renderer.hpp" class SDLRenderer : public Renderer