Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/MAFH2/Profile.py
diff options
context:
space:
mode:
Diffstat (limited to 'MAFH2/Profile.py')
-rw-r--r--MAFH2/Profile.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/MAFH2/Profile.py b/MAFH2/Profile.py
index 5c4bee6..b80c725 100644
--- a/MAFH2/Profile.py
+++ b/MAFH2/Profile.py
@@ -32,6 +32,11 @@ class Profile(GameEngineElement):
self.puzzlesSolved=0
self.inventory = []
+ bg = pygame.image.load(MENU_PATH+"mafh_splash.gif").convert()
+ self.background = DrawableObject([bg], '')
+ self.background.scale(self.game_engine.width, self.game_engine.height)
+ self.game_engine.get_scene().addObject(self.background)
+
#create background rect
draw_width = self.game_engine.width/4
draw_height = self.game_engine.height/4
@@ -85,10 +90,6 @@ class Profile(GameEngineElement):
self.inventory.append(item)
def add_to_engine(self):
- bg = pygame.image.load(MENU_PATH+"mafh_splash.gif").convert()
- self.background = DrawableObject([bg], '')
- self.background.scale(self.game_engine.width, self.game_engine.height)
- self.game_engine.get_scene().addObject(self.background)
super( Profile, self).add_to_engine()
def remove_from_engine(self):