changed fps count to 60

This commit is contained in:
Michał Starski 2019-03-21 01:13:36 +01:00
parent ee58257d54
commit 59f9eaae36

View File

@ -6,7 +6,7 @@ from pygame.locals import *
import utils
##INITIALIZE STATIC VARIABLES#########
FPS = 5
FPS = 60
all_sprites = sprite.Group()
fps_clock = time.Clock()
@ -57,4 +57,4 @@ while(1):
display.flip()
fps_clock.tick(FPS)
##################################################################################
##################################################################################