Commit 490c2868 by BellCodeEditor

save project

parent daeacfc9
Showing with 4 additions and 2 deletions
......@@ -97,8 +97,10 @@ while True:
bo=pygame.mixer_music.get_pos()
py=int(bo/1000)
py_m=py//600
py_n=py%600
py_m=py//60
py_n=py%60
if py_n<10:
py_n="0"+str(py_n)
info=str(py_m)+":"+str(py_n)
#print("现在播放:"+info)
my_font=pygame.font.Font("neuropol.ttf",10)
......
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