Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/main_game.py
diff options
context:
space:
mode:
Diffstat (limited to 'main_game.py')
-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