1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:23:51 +00:00

Don't play music if no playlist is set

This commit is contained in:
scrawl 2016-06-07 01:36:09 +02:00
parent f64bc3c7ef
commit dfc2f3469a

View file

@ -837,7 +837,7 @@ namespace MWSound
timePassed = 0.0f; timePassed = 0.0f;
// Make sure music is still playing // Make sure music is still playing
if(!isMusicPlaying()) if(!isMusicPlaying() && !mCurrentPlaylist.empty())
startRandomTitle(); startRandomTitle();
Environment env = Env_Normal; Environment env = Env_Normal;