- Exhumed: use the loop flag when starting music.

This commit is contained in:
Christoph Oelckers 2022-01-03 22:25:09 +01:00
parent 9c07f05f0f
commit 2f66377511

View file

@ -47,11 +47,11 @@ bool playCDtrack(int nTrack, bool bLoop)
// try ogg vorbis now from root directory.
sprintf(filename, "exhumed%02d.ogg", nTrack);
if (!Mus_Play(filename, true))
if (!Mus_Play(filename, bLoop))
{
// try ogg vorbis now from GOG MUSIC subdirectory.
sprintf(filename, "track%02d.ogg", nTrack);
Mus_Play(filename, true);
Mus_Play(filename, bLoop);
}
return true;
}