]> git.0x19.co - doomgeneric-snom360/commitdiff
sdl include paths
authorozkl <ozkl@users.noreply.github.com>
Sun, 19 Mar 2023 16:01:23 +0000 (19:01 +0300)
committerozkl <ozkl@users.noreply.github.com>
Sun, 19 Mar 2023 16:01:23 +0000 (19:01 +0300)
doomgeneric/i_sdlmusic.c
doomgeneric/i_sdlsound.c
doomgeneric/i_sound.c
doomgeneric/i_swap.h

index bac6f5b21eabbff2f612faa32ba9a1fc39d3747e..f56392f4ff46dd2b585dfab0d7e63fd9ea5375c3 100644 (file)
@@ -21,8 +21,8 @@
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
-#include "SDL2/SDL.h"
-#include "SDL2/SDL_mixer.h"
+#include <SDL.h>
+#include <SDL_mixer.h>
 
 #include "config.h"
 #include "doomtype.h"
index aa38ed42386f310ebb2eb385e87aed844d165f52..923948e31fb593580b6da7b3853a1f3985ddb48c 100644 (file)
@@ -24,8 +24,8 @@
 #include <string.h>
 #include <assert.h>
 #include <ctype.h>
-#include "SDL2/SDL.h"
-#include "SDL2/SDL_mixer.h"
+#include <SDL.h>
+#include <SDL_mixer.h>
 
 #ifdef HAVE_LIBSAMPLERATE
 #include <samplerate.h>
index b4c73a18b2c921307176f832fa9b6e8b39f97bfe..62b33bc48c4136229d2876d68b3e0a3af86e8138 100644 (file)
@@ -19,7 +19,7 @@
 #include <stdlib.h>
 
 #ifdef FEATURE_SOUND
-#include "SDL2/SDL_mixer.h"
+#include <SDL_mixer.h>
 #endif
 
 #include "config.h"
index fce6a0066de3b42b1d9930634f10c5cc0448d22b..d6a5b484f9a4ac9c5ea664efb20ce3c687d4afb1 100644 (file)
@@ -22,7 +22,7 @@
 
 #ifdef FEATURE_SOUND
 
-#include <SDL2/SDL_endian.h>
+#include <SDL_endian.h>
 
 // Endianess handling.
 // WAD files are stored little endian.