Skip to content

Commit

Permalink
Fix crash on drawing "open" notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrzwicky committed Oct 10, 2017
1 parent 88c96db commit c329141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fofix/game/guitarscene/instruments/Drum.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def renderNote(self, length, sustain, color, tailOnly = False, isTappable = Fals
texCoord = self.openTexCoord[y]
else:
noteImage = self.noteButtons
texCoord = self.noteTexCoord[y]
texCoord = self.openTexCoord[y]
else:
fret -= 1
vtx = self.noteVtx
Expand Down

0 comments on commit c329141

Please sign in to comment.