From b2f335bf6a34c8de7b2579208677bd45f907342e Mon Sep 17 00:00:00 2001 From: Oleksiy Date: Thu, 6 Mar 2025 17:03:38 +0200 Subject: [PATCH] fixed the issue when multipliers on 7th channel stopped everything --- Software/Gravity/Gravity.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Software/Gravity/Gravity.ino b/Software/Gravity/Gravity.ino index 6ddbee9..84ffc99 100644 --- a/Software/Gravity/Gravity.ino +++ b/Software/Gravity/Gravity.ino @@ -66,11 +66,11 @@ byte currentStep = 0; byte stepNumSelected = 0; bool *patternToEdit; -unsigned int channelPulseCount[6]; -unsigned int channelPulsesPerCycle[6]; +unsigned int channelPulseCount[7]; +unsigned int channelPulsesPerCycle[7]; byte sixteenthPulseCount = 0; -int playingModes[6]; // should be renamed to currentSubdivs or something. Updated from channels object on beat and with applied CV modulation -int playingModesOld[6]; +int playingModes[7]; // should be renamed to currentSubdivs or something. Updated from channels object on beat and with applied CV modulation +int playingModesOld[7]; unsigned int pulsePeriod; bool isPlaying;// = false; // replace to something like byte status where 1xxxxxx isPlaying, x1xxxxx isRecording etc