]> Devoid-pointer.net GitWeb - FFBChecker.git/commitdiff
Update SDL2 include paths
authorMichal Malý <madcatxster@devoid-pointer.net>
Sun, 8 Mar 2020 15:59:11 +0000 (16:59 +0100)
committerMichal Malý <madcatxster@devoid-pointer.net>
Sun, 8 Mar 2020 16:20:28 +0000 (17:20 +0100)
sdl2deviceprober.h
sdl2ffbdevice.h
sdl2ffbeffect.h

index 7c865396d0a2744919f9b2668a87de4a69d0def2..6b1a2cd029aeee6c40ff7de4ae48cf3e76d54f85 100644 (file)
@@ -2,7 +2,7 @@
 #define SDL2DEVICEPROBER_H
 
 #include "deviceprober.h"
-#include <SDL.h>
+#include <SDL2/SDL.h>
 #include "sdl2ffbdevice.h"
 #include <list>
 
index fa89c4d18e4346b053f2109df1edbba333f33920..94915f98a29625d10a50fea5fdaae12bfdb25267 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef SDL2FFBDEVICE_H
 #define SDL2FFBDEVICE_H
 
-#include "SDL.h"
+#include <SDL2/SDL.h>
 #include "ffbdevice.h"
 
 class SDL2FFBDevice : public FFBDevice {
@@ -24,4 +24,4 @@ private:
   static const QString SDL2DEV_ERR_CAPTION;
 };
 
-#endif // SDL2FFBDEVICE_H
\ No newline at end of file
+#endif // SDL2FFBDEVICE_H
index 92808c457d930c22f436d38297e8e18f9a7d52a4..95570ff8caacf308c5426ca241e83f59f23c5d53 100644 (file)
@@ -2,7 +2,7 @@
 #define SDL2FFBEFFECT_H
 
 #include "ffbeffect.h"
-#include "SDL.h"
+#include <SDL2/SDL.h>
 
 class SDL2FFBEffect : public FFBEffect
 {