From e26ad99499322fdad2129cb8f11a33f209365293 Mon Sep 17 00:00:00 2001 From: Turo Lamminen Date: Tue, 23 Apr 2024 20:23:03 +0300 Subject: [PATCH] Fix i_sound.c compilation on DJGPP when sound is enabled --- doomgeneric/i_sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomgeneric/i_sound.c b/doomgeneric/i_sound.c index bc891e3..c80a9d1 100644 --- a/doomgeneric/i_sound.c +++ b/doomgeneric/i_sound.c @@ -18,7 +18,7 @@ #include #include -#ifdef FEATURE_SOUND +#if defined(FEATURE_SOUND) && !defined(__DJGPP__) #include #endif