Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Cameron <quozl@laptop.org>2013-10-01 10:40:23 (GMT)
committer Laurent Bernabé <laurent.bernabe@gmail.com>2013-10-01 11:14:37 (GMT)
commitfb1e80b41719eabcf2943c2c7c1b1c820ca21ad2 (patch)
tree73ed5c18d632ba7561d35fbb30057ee35a6026f6
parent1eade17db2c08b6c4379f6f285422cfc0f45c051 (diff)
remove the loading screen, it was not visible
-rw-r--r--main_game.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/main_game.py b/main_game.py
index 2a976d9..d8ad3b0 100644
--- a/main_game.py
+++ b/main_game.py
@@ -174,19 +174,7 @@ class Game:
=> list of
OperationConfig.
"""
- # Shows loading screen
self._screen.fill(self._MENU_BACKGROUND)
- loading_txt = _("Loading...")
- loading_txt_surface = self._end_font.render(
- loading_txt,
- True,
- self._BLUE
- )
- txt_size = self._end_font.size(loading_txt)
- self._screen.blit(loading_txt_surface, (
- (self._size[0] - txt_size[0]) / 2,
- (self._size[1] - txt_size[1]) / 2,
- ))
pygame.display.update()
game_state = GameState.NORMAL