GME fix: play song in I_PlaySong, not I_LoadSong

(cherry picked from commit 5f21bf230d9716b7cc5b52e4bf3591ebe01e9f3a)
This commit is contained in:
mazmazz 2018-08-24 13:12:14 -04:00
parent 4d61f00b86
commit b0c47e2fb1
2 changed files with 5 additions and 5 deletions

View File

@ -656,7 +656,6 @@ boolean I_LoadSong(char *data, size_t len)
{
gme_equalizer_t eq = {GME_TREBLE, GME_BASS, 0,0,0,0,0,0,0,0};
gme_set_equalizer(gme, &eq);
Mix_HookMusic(mix_gme, gme);
return true;
}
#endif
@ -712,16 +711,17 @@ void I_UnloadSong(void)
boolean I_PlaySong(boolean looping)
{
if (!music)
return false;
#ifdef HAVE_GME
#ifdef HAVE_LIBGME
if (gme)
{
gme_start_track(gme, 0);
current_track = 0;
Mix_HookMusic(mix_gme, gme);
return true;
}
#endif
else if (!music)
return false;
if (Mix_PlayMusic(music, looping && loop_point == 0.0f ? -1 : 0) == -1)
{

View File

@ -675,7 +675,6 @@ boolean I_LoadSong(char *data, size_t len)
fmt.decodebuffersize = (44100 * 2) / 35;
fmt.pcmreadcallback = GMEReadCallback;
fmt.userdata = gme;
FMR(FMOD_System_CreateStream(fsys, NULL, FMOD_OPENUSER | (looping ? FMOD_LOOP_NORMAL : 0), &fmt, &music_stream));
return true;
}
#endif
@ -772,6 +771,7 @@ boolean I_PlaySong(boolean looping)
{
gme_start_track(gme, 0);
current_track = 0;
FMR(FMOD_System_CreateStream(fsys, NULL, FMOD_OPENUSER | (looping ? FMOD_LOOP_NORMAL : 0), &fmt, &music_stream));
FMR(FMOD_System_PlaySound(fsys, FMOD_CHANNEL_FREE, music_stream, false, &music_channel));
FMR(FMOD_Channel_SetVolume(music_channel, music_volume / 31.0));
FMR(FMOD_Channel_SetPriority(music_channel, 0));