mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-27 03:30:50 +00:00
Missed #ifdef HAVE_LIBGME in win_snd
This commit is contained in:
parent
302358c403
commit
0b97b2a76c
1 changed files with 6 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue