Fix crash when going story mode while music is disabled.
This commit is contained in:
parent
c675b6f38c
commit
f589b2063e
@ -683,7 +683,8 @@ void SFXManager::reallyUpdateNow(SFXCommand *current)
|
|||||||
{
|
{
|
||||||
assert(current->m_command==SFX_UPDATE);
|
assert(current->m_command==SFX_UPDATE);
|
||||||
float dt = current->m_parameter.getX();
|
float dt = current->m_parameter.getX();
|
||||||
music_manager->getCurrentMusic()->update(dt);
|
if (music_manager->getCurrentMusic())
|
||||||
|
music_manager->getCurrentMusic()->update(dt);
|
||||||
m_all_sfx.lock();
|
m_all_sfx.lock();
|
||||||
for (std::vector<SFXBase*>::iterator i = m_all_sfx.getData().begin();
|
for (std::vector<SFXBase*>::iterator i = m_all_sfx.getData().begin();
|
||||||
i != m_all_sfx.getData().end(); i++)
|
i != m_all_sfx.getData().end(); i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user