Skip to content

Commit

Permalink
fixes errors
Browse files Browse the repository at this point in the history
  • Loading branch information
akedrou committed Aug 13, 2011
1 parent 46d46c9 commit 8cc0933
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/GuitarScene.py
Expand Up @@ -109,7 +109,7 @@ def __init__(self, engine, libraryName, songName):
# self.gameMode2p = 6
# self.gamePlayers = 2

if self.gameMode1p == 1:
if self.gameMode == PRACTICE:
self.practiceMode = True

#MFH - check for party mode (akedrou TODO - fix/remove party mode!)
Expand Down
2 changes: 1 addition & 1 deletion src/World.py
Expand Up @@ -75,7 +75,7 @@ def setDefaultRules(self):
self.whammySavesSP = self.engine.config.get("game","whammy_saves_starpower")
self.bassGroove = self.engine.config.get("game","bass_groove_enable")
self.noteHitWindow = self.engine.config.get("game","note_hit_window")
self.earlyHitWindow = self.engine.config.get("handicap","early_hit_window")
self.earlyHitWindow = self.engine.config.get("game","early_hit_window")
self.sloppyMode = self.engine.config.get("game","gh2_sloppy")
self.hopoFrequency = self.engine.config.get("game","hopo_frequency")

Expand Down

0 comments on commit 8cc0933

Please sign in to comment.