Commit da90333f by BellCodeEditor

save project

parent 1881b99c
Showing with 5 additions and 5 deletions
......@@ -87,10 +87,10 @@ while True:
music_length=int(music_length)
play_time=pygame.mixer.music.get_pos()
play_time=int(play_time/1000)
play_m=play_time//60
play_s=play_time%60
play_ms=str(play_m)+str(play_s)
ujm=we.render(play_ms,True,(0,0,0))
play_m=play_time//60
play_s=play_time%60
play_ms=str(play_m)+str(play_s)
ujm=we.render(play_ms,True,(0,0,0))
if pygame.mixer.music.get_busy() == False:
num += 1
......@@ -101,7 +101,7 @@ while True:
music0=pygame.mixer.Sound(path+"\\"+music_list[num])
music_length=music0.get_length()
music_length=int(music_length)
e=pygame.transform.rotate(logo_img,et)
l=e.get_rect(center=(320,200))
if play_button==stop_img:
......
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