Commit e7d664f1 by BellCodeEditor

save project

parent 7e954f40
Showing with 5 additions and 4 deletions
......@@ -99,11 +99,11 @@ while True:
s="0"+str(s)
i=str(m)+":"+str(s)
m_1=pt//60
s_1=pt%60
m_1=m_l//60
s_1=m_l%60
if s_1<10:
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)
if play_button == stop_img:
......@@ -119,7 +119,7 @@ while True:
a=b_f.render(i,True,(255,255,255))
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))
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