Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Saludame.activity/game.py
diff options
context:
space:
mode:
Diffstat (limited to 'Saludame.activity/game.py')
-rwxr-xr-xSaludame.activity/game.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/Saludame.activity/game.py b/Saludame.activity/game.py
index a91aa14..bbf0548 100755
--- a/Saludame.activity/game.py
+++ b/Saludame.activity/game.py
@@ -72,15 +72,15 @@ class Main():
screen = pygame.display.get_surface()
assert screen, "No screen"
- pygame.display.update()
+ pygame.display.update()
# This clock is used to keep the game at the desired FPS.
clock = pygame.time.Clock()
# windows_controller asociado al screen
- self.windows_controller = saludame_windows_controller.SaludameWindowsController(screen, None)
+ self.windows_controller = saludame_windows_controller.SaludameWindowsController(screen, None)
- # Initialize sound_manager, game_manager, character, actions and menu.
+ # Initialize sound_manager, game_manager, character, actions and menu.
sound_manager.SoundManager()
app_loader = app_init.AppLoader(self.windows_controller)
@@ -143,5 +143,3 @@ class Main():
if __name__ == "__main__":
Main().main(False)
-
-