Skip to content

Commit

Permalink
Fix some merge errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsitton committed Jan 7, 2014
1 parent 2e15d16 commit 48a0fdc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions src/views/GuitarScene/GuitarScene.py
Expand Up @@ -3251,9 +3251,9 @@ def neckIntro(self):
if self.countdown > 0: #if the countdown is already at 0 ex. after pause
self.countdownOK = True
self.boardY = 1
elif self.boardY > 1:
self.boardY -= 0.01 #speed of animation higher the number = the faster the animation
self.setCamera()
elif self.boardY > 1:
self.boardY -= 0.01 #speed of animation higher the number = the faster the animation
self.setCamera()
elif self.neckintroAnimationType == 1 or (self.neckintroAnimationType == 4 and self.neckintroThemeType == "guitar hero"): #Guitar Hero
if self.boardY <= 1:
self.setCamera()
Expand Down
14 changes: 7 additions & 7 deletions src/views/GuitarScene/instruments/Guitar.py
Expand Up @@ -442,7 +442,7 @@ def getDoubleNotes(self, notes):
noteCount += 1
return sorted(notes, key=lambda x: x[0])

def controlsMatchNotes(self, controls, notes, hopo = False):
def controlsMatchNotes(self, controls, notes, hopo = False):
# no notes?
if not notes:
return False
Expand Down Expand Up @@ -498,13 +498,13 @@ def controlsMatchNotes(self, controls, notes, hopo = False):
else:
self.missedNotes = []

for time, note in self.missedNotes:
note.skipped = True
note.played = False
if twochord == 2:
self.twoChord += skipped
for time, note in self.missedNotes:
note.skipped = True
note.played = False
if twochord == 2:
self.twoChord += skipped

return True
return True

def uniqify(self, seq, idfun=None):
# order preserving
Expand Down

0 comments on commit 48a0fdc

Please sign in to comment.