From 9acefccae50c4d4487916d3432d0aeabb95a724c Mon Sep 17 00:00:00 2001 From: KadeDeveloper Date: Mon, 19 Jul 2021 22:51:07 -0700 Subject: [PATCH] rolls are weird --- source/smTools/SMFile.hx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/smTools/SMFile.hx b/source/smTools/SMFile.hx index a17d253..b4db9a2 100644 --- a/source/smTools/SMFile.hx +++ b/source/smTools/SMFile.hx @@ -191,7 +191,6 @@ class SMFile //output += " - Row " + noteRow + " - Time: " + rowTime + " (" + timeInSec + ") - Beat: " + currentBeat + " - Current BPM: " + header.getBPM(currentBeat) + "\n"; var index = 0; - var takeover = false; for(i in notes) { @@ -216,7 +215,7 @@ class SMFile var timeDiff = rowTime - data[0]; section.sectionNotes.push([data[0],lane,timeDiff]); heldNotes[index] = []; - case 4: + case 4: // roll head heldNotes[lane] = [rowTime,lane,0]; } index++;