Commit e7d664f1 by BellCodeEditor

save project

parent 7e954f40
Showing with 6 additions and 5 deletions
...@@ -98,12 +98,12 @@ while True: ...@@ -98,12 +98,12 @@ while True:
if s<10: if s<10:
s="0"+str(s) s="0"+str(s)
i=str(m)+":"+str(s) i=str(m)+":"+str(s)
m_1=pt//60 m_1=m_l//60
s_1=pt%60 s_1=m_l%60
if s_1<10: if s_1<10:
s_1="0"+str(s_1) s_1="0"+str(s_1)
i=str(m_1)+":"+str(s_1) d=str(m_1)+":"+str(s_1)
r=pygame.transform.rotate(logo_img,j) r=pygame.transform.rotate(logo_img,j)
if play_button == stop_img: if play_button == stop_img:
...@@ -119,7 +119,7 @@ while True: ...@@ -119,7 +119,7 @@ while True:
a=b_f.render(i,True,(255,255,255)) a=b_f.render(i,True,(255,255,255))
sc.blit(a,(120,440)) sc.blit(a,(120,440))
s=b_f.render("/"+i,True,(0,0,0)) s=b_f.render("/"+d,True,(0,0,0))
sc.blit(s,(170,440)) sc.blit(s,(170,440))
pygame.display.update() pygame.display.update()
\ No newline at end of file
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