From 92773adb376a11850a82351f56af5eb701afc0d0 Mon Sep 17 00:00:00 2001 From: Electric Keet Date: Wed, 23 Aug 2023 09:47:31 -0700 Subject: [PATCH] Correcting an ampersand. Little things like this make a difference. --- src/gui/insEdit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/insEdit.cpp b/src/gui/insEdit.cpp index 0dcd729db..04350a8a6 100644 --- a/src/gui/insEdit.cpp +++ b/src/gui/insEdit.cpp @@ -1767,7 +1767,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail \ /* if ADSR/LFO, populate min/max */ \ if (i.macro->open&6) { \ - if ((i.macro->val[0]==0) & (i.macro->val[1]==0)) { \ + if ((i.macro->val[0]==0) && (i.macro->val[1]==0)) { \ i.macro->val[0]=i.min; \ i.macro->val[1]=i.max; \ } \