Commit 94ecc1f8 by BellCodeEditor

save project

parent b44791ab
Showing with 8 additions and 0 deletions
......@@ -79,6 +79,14 @@ while True:
pygame.mixer.music.load(d + "//" + c[num])
pygame.mixer.music.play()
s = pygame.mixer.music.get_pos()
s = int(s//1000)
i = s//60
j = s%60
k = str(i)+":"+str(j)
print(k)
if b == stop_img:
angle += 1
w = pygame.transform.rotate(logo_img,angle)
......
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