From edc2af18c20f11f7d7ada7fe5613d885f1478bc8 Mon Sep 17 00:00:00 2001 From: weirdpeople Date: Sun, 31 Jul 2011 04:05:45 -0500 Subject: [PATCH] May or may not help with Issue 1259 --- src/Instrument.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Instrument.py b/src/Instrument.py index a3a626036..1472129d0 100644 --- a/src/Instrument.py +++ b/src/Instrument.py @@ -605,7 +605,7 @@ def setMultiplier(self, multiplier): def hitNote(self, time, note): self.pickStartPos = max(self.pickStartPos, time) - self.playedNotes = [(time, note)] + self.playedNotes.append([time, note]) note.played = True return True