- do not specifically look in the 'music' directory for CD tracks.

Prepending of 'music/' is done automatically for all music not found without a path so this only limits options.
This commit is contained in:
Christoph Oelckers 2020-11-22 12:51:13 +01:00
parent 751c295b62
commit c6c9b26af2

View file

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