From 4b3431097b6d82ee6e2e9f224a4ef1105ab3794c Mon Sep 17 00:00:00 2001 From: David Lowndes Date: Sun, 17 Nov 2024 22:02:37 +0000 Subject: [PATCH] Apicolypse::parseParameterValueFromString was not using the value returned from string2dB. (#7853) Co-authored-by: David Lowndes --- libs/airwindows/src/Apicolypse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/airwindows/src/Apicolypse.cpp b/libs/airwindows/src/Apicolypse.cpp index 0083e95b4a0..942568c426f 100644 --- a/libs/airwindows/src/Apicolypse.cpp +++ b/libs/airwindows/src/Apicolypse.cpp @@ -153,7 +153,7 @@ bool Apicolypse::parseParameterValueFromString(VstInt32 index, const char* txt, if (index == kParamD) { - string2dB(txt, v); + f = string2dB(txt, v); } else {