Skip to content

Commit

Permalink
Fix the hitGlowColor being set to the glowColor when it is specified.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsitton committed Jul 27, 2011
1 parent 85fab89 commit c26d15c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Theme.py
Expand Up @@ -157,7 +157,7 @@ def get(value, type = str, default = None):
#actually is (if the image is white then no matter what key is hit the glow will be white)
self.hitGlowColor = get("hit_glow_color", str, "frets")
if not self.hitGlowColor == "frets":
self.glowColor = self.hexToColor(self.glowColor)
self.hitGlowColor = self.hexToColor(self.hitGlowColor)

#Sets the color of the glow.png
self.glowColor = get("glow_color", str, "frets")
Expand Down

0 comments on commit c26d15c

Please sign in to comment.