From 43e026b48ce1076084e9ab0048a89e96b901a05a Mon Sep 17 00:00:00 2001 From: root Date: Mon, 29 Jul 2019 11:16:35 -0600 Subject: [PATCH] Fix typo --- plugins/Microwave/Microwave.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Microwave/Microwave.cpp b/plugins/Microwave/Microwave.cpp index 579756dffe7..1eb7527ae2b 100644 --- a/plugins/Microwave/Microwave.cpp +++ b/plugins/Microwave/Microwave.cpp @@ -5699,9 +5699,9 @@ void mSynth::nextStringSample(sampleFrame &outputSample, std::vector (&m_ // Takes input of original Hz and the number of cents to m_detune it by, and returns the detuned result in Hz. -inline float mSynth::detuneWithCents(float pitchValue, float m_detuneValue) +inline float mSynth::detuneWithCents(float pitchValue, float detuneValue) { - return pitchValue * std::exp2(m_detuneValue / 1200.f); + return pitchValue * std::exp2(detuneValue / 1200.f); }