From 66c6eed45671bf598b94b6ca551ee2b0cbf72ba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=9F=E5=A4=96=E4=B9=8B=E7=A5=9E?= Date: Wed, 4 May 2022 09:59:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E5=8F=98=E9=87=8F=E5=90=8D?= =?UTF-8?q?=E9=98=B2=E6=AD=A2=E6=AD=A7=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/state/mainmenu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/state/mainmenu.py b/source/state/mainmenu.py index c89570c..99c6fe9 100644 --- a/source/state/mainmenu.py +++ b/source/state/mainmenu.py @@ -13,7 +13,7 @@ class Menu(tool.State): self.persist = persist self.game_info = persist self.setupBackground() - self.setupAdventure() + self.setupOptions() def setupBackground(self): frame_rect = (80, 0, 800, 600) @@ -26,7 +26,7 @@ class Menu(tool.State): self.bg_rect.x = 0 self.bg_rect.y = 0 - def setupAdventure(self): + def setupOptions(self): # 冒险模式 self.adventure_frames = [] frame_names = (c.OPTION_ADVENTURE + '_0', c.OPTION_ADVENTURE + '_1')