Skip to content
Snippets Groups Projects
Commit fabcb3d8 authored by Monster Iestyn's avatar Monster Iestyn
Browse files

Merge branch 'public-winsnd-libgme-fix' into 'master'

Missed #ifdef HAVE_LIBGME in win_snd

See merge request STJr/SRB2!326
parents 0c0cbb3b af0fdfe6
No related branches found
No related tags found
No related merge requests found
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment