Commit 2113f660 by BellCodeEditor

auto save

parent 5cae1f7f
Showing with 9 additions and 1 deletions
...@@ -87,7 +87,15 @@ while True: ...@@ -87,7 +87,15 @@ while True:
play_time = pygame.mixer.music.get_pos() play_time = pygame.mixer.music.get_pos()
play_time = int(play_time/1000) play_time = int(play_time/1000)
play_m = play_time//60 play_m = play_time//60
play_s = play_time % 60 pla
y_s = play_time % 60
info = str(play_m) + ":" + str(play_s) info = str(play_m) + ":" + str(play_s)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment