Skip to content

Commit e26ad99

Browse files
committed
Fix i_sound.c compilation on DJGPP when sound is enabled
1 parent 278709e commit e26ad99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doomgeneric/i_sound.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <stdio.h>
1919
#include <stdlib.h>
2020

21-
#ifdef FEATURE_SOUND
21+
#if defined(FEATURE_SOUND) && !defined(__DJGPP__)
2222
#include <SDL_mixer.h>
2323
#endif
2424

0 commit comments

Comments
 (0)