Skip to content

Commit

Permalink
Flamesize error in Freestyle flames workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
erodozer committed Jun 16, 2011
1 parent bc0e3ff commit 249fb8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Drum.py
Expand Up @@ -343,7 +343,7 @@ def renderFreestyleFlames(self, visibility, controls):
if self.theme == 2:
y -= 0.5

flameSize = self.flameSizes[self.cappedScoreMult - 1][fretNum]
flameSize = self.hitFlameSize
if self.theme == 0 or self.theme == 1: #THIS SETS UP GH3 COLOR, ELSE ROCKBAND(which is DEFAULT in Theme.py)
flameColor = self.gh3flameColor
else: #MFH - fixing crash!
Expand Down
2 changes: 1 addition & 1 deletion src/Guitar.py
Expand Up @@ -179,7 +179,7 @@ def renderFreestyleFlames(self, visibility, controls):
if self.theme == 2:
y -= 0.5

flameSize = self.flameSizes[self.cappedScoreMult - 1][fretNum]
flameSize = self.hitFlameSize
if self.theme == 0 or self.theme == 1: #THIS SETS UP GH3 COLOR, ELSE ROCKBAND(which is DEFAULT in Theme.py)
flameColor = self.gh3flameColor
else: #MFH - fixing crash!
Expand Down

0 comments on commit 249fb8e

Please sign in to comment.