Skip to content

Commit f7e6c1f

Browse files
committed
a few more comments
1 parent 166852b commit f7e6c1f

File tree

1 file changed

+2
-1
lines changed
  • Metro/Metro_RP2350_Match3/match3_game

1 file changed

+2
-1
lines changed

Metro/Metro_RP2350_Match3/match3_game/code.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
save_to = None
5050
game_state = None
5151
try:
52+
# check for autosave file on CPSAVES drive
5253
if AUTOSAVE_FILENAME in os.listdir("/saves/"):
5354
savegame_buffer = io.BytesIO()
5455
with open(f"/saves/{AUTOSAVE_FILENAME}", "rb") as f:
@@ -113,7 +114,7 @@
113114
bg_group.append(bg_tg)
114115
main_group.append(bg_group)
115116

116-
117+
# create Game helper object
117118
match3_game = Match3Game(
118119
game_state=game_state,
119120
display_size=(display.width // scale_factor, display.height // scale_factor),

0 commit comments

Comments
 (0)