diff --git a/src/xrSound/SoundRender_Emitter_FSM.cpp b/src/xrSound/SoundRender_Emitter_FSM.cpp index 6f1c2c3304a..0be0220ab9a 100644 --- a/src/xrSound/SoundRender_Emitter_FSM.cpp +++ b/src/xrSound/SoundRender_Emitter_FSM.cpp @@ -107,16 +107,16 @@ void CSoundRender_Emitter::update(float fTime, float dt) if (fTime >= fTimeToStop) { // STOP - m_current_state = stStopped; SoundRender->i_stop(this); + m_current_state = stStopped; } else { if (!update_culling(dt)) { // switch to: SIMULATE - m_current_state = stSimulating; // switch state SoundRender->i_stop(this); + m_current_state = stSimulating; } else {