Skip to content

Commit

Permalink
Neck loadImage extension fix (bass part crash)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzion committed Sep 2, 2010
1 parent 048b2ea commit 773e449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Neck.py
Expand Up @@ -214,7 +214,7 @@ def __init__(self, engine, instrument, playerObj):

def loadImage(name, file):
if self.extension:
if not engine.loadImgDrawing(self, name, os.path.join(themepath, extension, file)):
if not engine.loadImgDrawing(self, name, os.path.join(themepath, self.extension, file)):
engine.loadImgDrawing(self, name, os.path.join(themepath, file))
else:
engine.loadImgDrawing(self, name, os.path.join(themepath, file))
Expand Down

0 comments on commit 773e449

Please sign in to comment.