]> git.0x19.co - doomgeneric-snom360/commitdiff
Fix i_sound.c compilation on DJGPP when sound is enabled
authorTuro Lamminen <turol@iki.fi>
Tue, 23 Apr 2024 17:23:03 +0000 (20:23 +0300)
committerTuro Lamminen <turol@iki.fi>
Tue, 23 Apr 2024 17:23:03 +0000 (20:23 +0300)
doomgeneric/i_sound.c

index bc891e3dc76ce0242e2d478fa489e586a60cab9b..c80a9d114c1391a19e26144434a81fafbe918536 100644 (file)
@@ -18,7 +18,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-#ifdef FEATURE_SOUND
+#if defined(FEATURE_SOUND) && !defined(__DJGPP__)
 #include <SDL_mixer.h>
 #endif