From 1e9fdb04547c5acad66af3bca572c78991c840f4 Mon Sep 17 00:00:00 2001 From: mazmazz Date: Mon, 27 Aug 2018 06:15:01 -0400 Subject: [PATCH] Corrected unterminated #endif in sdl_sound --- src/sdl/sdl_sound.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sdl/sdl_sound.c b/src/sdl/sdl_sound.c index 56e1a39c5..b3c23d34c 100644 --- a/src/sdl/sdl_sound.c +++ b/src/sdl/sdl_sound.c @@ -1736,6 +1736,7 @@ void I_StopSong(void) Mix_FreeMusic(music[1]); music[1] = NULL; LoadSong(NULL, 0, 1); +#endif } static void I_PauseGME(void)