diff --git a/movie.cpp b/movie.cpp
index 25cb491..7f7536c 100644
--- a/src/engine/movie.cpp
+++ b/src/engine/movie.cpp
@@ -8,7 +8,7 @@
 //   kino - ok
 
 #include "engine.h"
-#include "SDL_mixer.h"
+#include <SDL2/SDL_mixer.h>
 
 VAR(dbgmovie, 0, 0, 1);
 
diff --git a/sound.cpp b/sound.cpp
index 38ff025..a0ed5db 100644
--- a/src/engine/sound.cpp
+++ b/src/engine/sound.cpp
@@ -1,7 +1,7 @@
 // sound.cpp: basic positional sound using sdl_mixer
 
 #include "engine.h"
-#include "SDL_mixer.h"
+#include <SDL2/SDL_mixer.h>
 
 bool nosound = true;
 
diff --git a/texture.cpp b/texture.cpp
index 964d39d..f76b9b1 100644
--- a/src/engine/texture.cpp
+++ b/src/engine/texture.cpp
@@ -1,7 +1,7 @@
 // texture.cpp: texture slot management
 
 #include "engine.h"
-#include "SDL_image.h"
+#include <SDL2/SDL_image.h>
 
 #ifndef SDL_IMAGE_VERSION_ATLEAST
 #define SDL_IMAGE_VERSION_ATLEAST(X, Y, Z) \
