Commit 63638c42 by BellCodeEditor

save project

parent fa8c825c
Showing with 3 additions and 2 deletions
......@@ -89,7 +89,7 @@ while True:
play_time = int(play_time/1000)
play_m = play_time//60
play_s = play_time%60
info = str(play_m) +":"+set(play_s)
info = str(play_m) +":"+str(play_s)
new_logo = pygame.transform.rotate(logo_img,angle)
newRect = new_logo.get_rect(center=(320,200))
......@@ -103,7 +103,7 @@ while True:
screen.blit(new_logo,pos)
screen.blit(last_img, (120, 350))
screen.blit(next_img, (420, 350))
scoreSurf = basic_fant.render(info,True,(255,255,255))
scoreSurf = basic_font.render(info,True,(255,255,255))
screen.blit(scoreSurf,(120,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