From e6ae4879f68f0ec5e4e6cb3841efc8ff110a0e43 Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 12 Dec 2020 13:07:46 +0100 Subject: [PATCH] Added security check to pitch change #1450 --- src/raudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raudio.c b/src/raudio.c index 8859547e5..0e378c805 100644 --- a/src/raudio.c +++ b/src/raudio.c @@ -632,7 +632,7 @@ void SetAudioBufferVolume(AudioBuffer *buffer, float volume) // Set pitch for an audio buffer void SetAudioBufferPitch(AudioBuffer *buffer, float pitch) { - if (buffer != NULL) + if ((buffer != NULL) && (pitch > 0.0f)) { // Pitching is just an adjustment of the sample rate. // Note that this changes the duration of the sound: