Missed #ifdef HAVE_LIBGME in win_snd

This commit is contained in:
Marco Z 2018-11-13 22:50:08 -05:00
parent 302358c403
commit 0b97b2a76c
1 changed files with 6 additions and 1 deletions

View File

@ -551,7 +551,12 @@ boolean I_LoadSong(char *data, size_t len)
FMOD_TAG tag;
unsigned int loopstart, loopend;
if (gme || music_stream)
if (
#ifdef HAVE_LIBGME
gme ||
#endif
music_stream
)
I_UnloadSong();
memset(&fmt, 0, sizeof(FMOD_CREATESOUNDEXINFO));