From da3e5d69a6c37463ee8cd5172fb3388e41837f8c Mon Sep 17 00:00:00 2001 From: midilab Date: Thu, 21 Sep 2023 17:32:14 -0300 Subject: [PATCH] auto init as false shuffle --- src/uClock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uClock.h b/src/uClock.h index f4381fe..661c92d 100755 --- a/src/uClock.h +++ b/src/uClock.h @@ -39,7 +39,7 @@ namespace umodular { namespace clock { // step adjust goes min: -5, max: 5 #define MAX_SHUFFLE_TEMPLATE_SIZE 16 typedef struct { - bool active; + bool active = false; uint8_t size = MAX_SHUFFLE_TEMPLATE_SIZE; int8_t step[MAX_SHUFFLE_TEMPLATE_SIZE] = {0}; } SHUFFLE_TEMPLATE;