diff --git a/right/src/macros.c b/right/src/macros.c index 2a236e4..6ce7277 100644 --- a/right/src/macros.c +++ b/right/src/macros.c @@ -401,6 +401,9 @@ bool processCurrentMacroAction(void) void Macros_StartMacro(uint8_t index) { + if(AllMacros[index].macroActionsCount == 0) { + return; + } MacroPlaying = true; currentMacroIndex = index; currentMacroActionIndex = 0;