Skip to content

Commit

Permalink
May or may not help with Issue 1259
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsitton committed Jul 31, 2011
1 parent 644a6d7 commit edc2af1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Instrument.py
Expand Up @@ -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

Expand Down

0 comments on commit edc2af1

Please sign in to comment.