diff --git a/resources/graphics/Screen/GameLoose.png b/resources/graphics/Screen/GameLose.png similarity index 100% rename from resources/graphics/Screen/GameLoose.png rename to resources/graphics/Screen/GameLose.png diff --git a/source/constants.py b/source/constants.py index e491261..33e1562 100755 --- a/source/constants.py +++ b/source/constants.py @@ -84,7 +84,7 @@ LEVEL = 'level' # 界面图片文件名 MAIN_MENU_IMAGE = 'MainMenu' OPTION_ADVENTURE = 'Adventure' -GAME_LOOSE_IMAGE = 'GameLoose' +GAME_LOSE_IMAGE = 'GameLose' GAME_VICTORY_IMAGE = 'GameVictory' # 地图相关内容 diff --git a/source/state/screen.py b/source/state/screen.py index d53f548..c76080b 100644 --- a/source/state/screen.py +++ b/source/state/screen.py @@ -51,7 +51,7 @@ class GameLoseScreen(Screen): Screen.__init__(self) def getImageName(self): - return c.GAME_LOOSE_IMAGE + return c.GAME_LOSE_IMAGE def set_next_state(self): - return c.MAIN_MENU \ No newline at end of file + return c.LEVEL \ No newline at end of file