Commit 819529e6 by BellCodeEditor

save project

parent d4e31e9c
Showing with 1 additions and 2 deletions
...@@ -90,7 +90,6 @@ while True: ...@@ -90,7 +90,6 @@ while True:
play_m=play_time//60 play_m=play_time//60
play_s=play_time%60 play_s=play_time%60
play_ms=str(play_m)+str(play_s) play_ms=str(play_m)+str(play_s)
ujm=we.render(play_ms,True,(0,0,0))
if pygame.mixer.music.get_busy() == False: if pygame.mixer.music.get_busy() == False:
num += 1 num += 1
...@@ -112,7 +111,7 @@ while True: ...@@ -112,7 +111,7 @@ while True:
screen.blit(e, (l[0],l[1])) # 中间logo图 screen.blit(e, (l[0],l[1])) # 中间logo图
screen.blit(last_img, (120, 350)) # 上一曲 screen.blit(last_img, (120, 350)) # 上一曲
screen.blit(next_img, (420, 350)) # 下一曲 screen.blit(next_img, (420, 350)) # 下一曲
mn=we.render(,True,(255,255,255)) mn=we.render(play_ms,True,(255,255,255))
screen.blit(mn,(120,450)) screen.blit(mn,(120,450))
# 刷新画面 # 刷新画面
pygame.display.update() pygame.display.update()
......
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