From c2a17697a7c289be04c5e0078f90670181d07936 Mon Sep 17 00:00:00 2001 From: Johan Berglund Date: Sun, 17 Sep 2017 12:34:19 +0200 Subject: [PATCH] Bug fix in storing notes for parallel chord. --- NuEVI.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NuEVI.ino b/NuEVI.ino index 1795e3f..6240cac 100644 --- a/NuEVI.ino +++ b/NuEVI.ino @@ -708,7 +708,7 @@ void loop() { if (slurSustain){ addedIntervals++; - slurInterval[addedIntervals] = fingeredNote - slurBase; + slurInterval[addedIntervals-1] = fingeredNote - slurBase; } activeNote=fingeredNote; }