summaryrefslogtreecommitdiff
path: root/scene/audio
diff options
context:
space:
mode:
authorstmSi <stm1998sithumyo@gmail.com>2022-12-24 12:39:48 +0630
committerstmSi <stm1998sithumyo@gmail.com>2022-12-24 12:39:48 +0630
commit20416169347ee2c365f01f6d7987dd78315488d5 (patch)
tree69d25148ded11096eaf1540c17efd25369ad7c9a /scene/audio
parentf7cf9fb148140b86ee5795110373a0d55ff32860 (diff)
Fix Editor hanging if audiostream's pitch_scale is NaN
Diffstat (limited to 'scene/audio')
-rw-r--r--scene/audio/audio_stream_player.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/audio/audio_stream_player.cpp b/scene/audio/audio_stream_player.cpp
index 03115e765f..fcd529dea4 100644
--- a/scene/audio/audio_stream_player.cpp
+++ b/scene/audio/audio_stream_player.cpp
@@ -111,7 +111,7 @@ float AudioStreamPlayer::get_volume_db() const {
}
void AudioStreamPlayer::set_pitch_scale(float p_pitch_scale) {
- ERR_FAIL_COND(p_pitch_scale <= 0.0);
+ ERR_FAIL_COND(!(p_pitch_scale > 0.0));
pitch_scale = p_pitch_scale;
for (Ref<AudioStreamPlayback> &playback : stream_playbacks) {