From 91c3fba181de2e53143a3f280034b8e8b174b646 Mon Sep 17 00:00:00 2001 From: LTVA1 <87536432+LTVA1@users.noreply.github.com> Date: Wed, 17 Jan 2024 15:37:18 +0300 Subject: [PATCH] fix --- src/engine/macroInt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/macroInt.cpp b/src/engine/macroInt.cpp index 1876bc2e4..6698a93b3 100644 --- a/src/engine/macroInt.cpp +++ b/src/engine/macroInt.cpp @@ -252,7 +252,7 @@ void DivMacroInt::retrig(unsigned char id) DivMacroStruct* m = NULL; DivInstrumentMacro* sm = NULL; - for(int i = 0; i < macroListLen; i++) + for(int i = 0; i < (int)macroListLen; i++) { if(macroList[i]->macroType == id) {