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:
parent
f64bc3c7ef
commit
dfc2f3469a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue