]> git.localhorst.tv Git - l2e.git/commitdiff
fixed SDL inclusion in application classes
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Sun, 5 Aug 2012 13:26:14 +0000 (15:26 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Sun, 5 Aug 2012 13:26:14 +0000 (15:26 +0200)
src/app/Application.h
src/app/State.h

index e43faf44e1692b0905d079d25b95084f5262edaf..159f627c0a87f1c4ab62e63eaf67594d4d30de9d 100644 (file)
@@ -11,7 +11,7 @@
 #include "../sdl/InitScreen.h"
 
 #include <stack>
-#include <SDL/SDL.h>
+#include <SDL.h>
 
 
 namespace app {
index 471b44bd99ff0ba03025560fa95baabc9882039f..d9936ddfcc3665f90a1a6900aac876ebbca4bf3f 100644 (file)
@@ -8,7 +8,7 @@
 #ifndef APP_APPLICATIONSTATE_H_
 #define APP_APPLICATIONSTATE_H_
 
-#include <SDL/SDL.h>
+#include <SDL.h>
 
 namespace app {