Commit b4220666 by BellCodeEditor

save project

parent ef607a26
Showing with 3 additions and 3 deletions
...@@ -103,12 +103,12 @@ while True: ...@@ -103,12 +103,12 @@ while True:
play_s='0'+str(play_s) play_s='0'+str(play_s)
info=str(play_m)+':'+str(play_s) info=str(play_m)+':'+str(play_s)
timesurf=zt.render(info,True,(225,225,225)) timesurf=zt.render(info,True,(225,225,225))
music_m=music_lenth//60 music_m=music_length//60
music_s=music_lenth%60 music_s=music_length%60
if music_s<10: if music_s<10:
music_s='0'+str+(music_s) music_s='0'+str+(music_s)
info2=str(music_m)+':'+str(music_s) info2=str(music_m)+':'+str(music_s)
timesurf2=time.font.render('/'+info2,True,(0,0,0)) timesurf2=zt.render('/'+info2,True,(0,0,0))
screen.blit(bg_img, (0, 0)) screen.blit(bg_img, (0, 0))
screen.blit(play_button, (270, 330)) screen.blit(play_button, (270, 330))
screen.blit(new_logo, pos) screen.blit(new_logo, pos)
......
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