diff options
| author | Indah Sylvia | 2017-09-25 20:39:41 +0700 |
|---|---|---|
| committer | Indah Sylvia | 2017-09-25 20:46:52 +0700 |
| commit | ffca222d171cc88f52c35436919f892f8e78df6b (patch) | |
| tree | 8b74a1661747b8301d7c9402f3fb79fe96ecadda | |
| parent | 09800ac65079599c568679b53962a313182885ea (diff) | |
| download | godot-ffca222d171cc88f52c35436919f892f8e78df6b.tar.gz godot-ffca222d171cc88f52c35436919f892f8e78df6b.tar.zst godot-ffca222d171cc88f52c35436919f892f8e78df6b.zip | |
| -rw-r--r-- | servers/audio/effects/audio_effect_chorus.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/servers/audio/effects/audio_effect_chorus.cpp b/servers/audio/effects/audio_effect_chorus.cpp index 76dd585ff..32631beb2 100644 --- a/servers/audio/effects/audio_effect_chorus.cpp +++ b/servers/audio/effects/audio_effect_chorus.cpp @@ -182,9 +182,8 @@ Ref<AudioEffectInstance> 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 { |
