foxygit / doom Log in
commit 9afdc87df3f8f51d7a3900f2f92ca158b43882ef
Author:     Roman Fomin <rfomin@gmail.com>
AuthorDate: Fri Nov 5 18:42:01 2021 +0700
Commit:     Roman Fomin <rfomin@gmail.com>
CommitDate: Fri Nov 5 18:42:01 2021 +0700

    remove the use of an undeclared variable
---
 src/i_sdlmusic.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/i_sdlmusic.c b/src/i_sdlmusic.c
index f693b724..40ec7c82 100644
--- a/src/i_sdlmusic.c
+++ b/src/i_sdlmusic.c
@@ -290,7 +290,7 @@ static void I_SDL_PlaySong(void *handle, boolean looping)
         return;
     }

-    if (handle == NULL && !win_midi_stream_opened)
+    if (handle == NULL)
     {
         return;
     }