Fixed SDL2 include, should just be SDL.h
authorIngo Ruhnke <grumbel@gmail.com>
Wed, 30 Jul 2014 01:11:21 +0000 (03:11 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Wed, 30 Jul 2014 01:11:21 +0000 (03:11 +0200)
src/main.cpp
src/video/gl/gl_renderer.cpp
src/video/sdl/sdl_renderer.hpp

index 6acebfd..9eac977 100644 (file)
@@ -14,7 +14,7 @@
 //  You should have received a copy of the GNU General Public License
 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-#include "SDL2/SDL.h"
+#include "SDL.h"
 
 #include "supertux/main.hpp"
 
index b166529..f2cec7e 100644 (file)
@@ -20,7 +20,7 @@
 #include <iomanip>
 #include <iostream>
 #include <physfs.h>
-#include "SDL2/SDL.h"
+#include "SDL.h"
 //#include "SDL/SDL.h"
 //#include "SDL/SDL_opengl.h"
 
index 1276c1c..8e3cd23 100644 (file)
@@ -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