From ffca222d171cc88f52c35436919f892f8e78df6b Mon Sep 17 00:00:00 2001 From: Indah Sylvia Date: Mon, 25 Sep 2017 20:39:41 +0700 Subject: [PATCH] Fixed Voice_Count issues in AudioEffectChorus: - Setting voice_count value to 4 (MAX_VOICES) is now allowed - Fixed slider glitch on setting voice_count value --- servers/audio/effects/audio_effect_chorus.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/servers/audio/effects/audio_effect_chorus.cpp b/servers/audio/effects/audio_effect_chorus.cpp index 76dd585ffa9..32631beb2c2 100644 --- a/servers/audio/effects/audio_effect_chorus.cpp +++ b/servers/audio/effects/audio_effect_chorus.cpp @@ -182,9 +182,8 @@ Ref AudioEffectChorus::instance() { void AudioEffectChorus::set_voice_count(int p_voices) { - ERR_FAIL_COND(p_voices < 1 || p_voices >= MAX_VOICES); + ERR_FAIL_COND(p_voices < 1 || p_voices > MAX_VOICES); voice_count = p_voices; - _change_notify(); } int AudioEffectChorus::get_voice_count() const {