Commit 745436a7 by BellCodeEditor

save project

parent 93e0a96e
Showing with 3 additions and 2 deletions
...@@ -88,7 +88,7 @@ while True: ...@@ -88,7 +88,7 @@ while True:
play_time=int(play_time/1000) play_time=int(play_time/1000)
play_m=play_time//60 play_m=play_time//60
play_s=play_time%60 play_s=play_time%60
info=str(play_m)+":"+str(play_s) info = str(play_m)+":"+str(play_s)
...@@ -104,6 +104,6 @@ while True: ...@@ -104,6 +104,6 @@ while True:
screen.blit(new_logo,pos) screen.blit(new_logo,pos)
screen.blit(last_img, (120, 350)) screen.blit(last_img, (120, 350))
screen.blit(next_img, (420, 350)) screen.blit(next_img, (420, 350))
scoreSurf=basic_font.render(info, True, (225, 225, 225)) scoreSurf=basic_font.render(info, True, (255, 255, 255))
screen.blit(scoreSurf,(120,440)) screen.blit(scoreSurf,(120,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