We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 166852b commit f7e6c1fCopy full SHA for f7e6c1f
Metro/Metro_RP2350_Match3/match3_game/code.py
@@ -49,6 +49,7 @@
49
save_to = None
50
game_state = None
51
try:
52
+ # check for autosave file on CPSAVES drive
53
if AUTOSAVE_FILENAME in os.listdir("/saves/"):
54
savegame_buffer = io.BytesIO()
55
with open(f"/saves/{AUTOSAVE_FILENAME}", "rb") as f:
@@ -113,7 +114,7 @@
113
114
bg_group.append(bg_tg)
115
main_group.append(bg_group)
116
-
117
+# create Game helper object
118
match3_game = Match3Game(
119
game_state=game_state,
120
display_size=(display.width // scale_factor, display.height // scale_factor),
0 commit comments