From fca23ea3ce86461f1b970afeb87fcbf5c3a124d3 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sun, 28 Jan 2018 11:43:06 +0700 Subject: Lower ridiculously high maximum FPS --- brutalmaze/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brutalmaze/constants.py b/brutalmaze/constants.py index 21d821b..1e0be20 100644 --- a/brutalmaze/constants.py +++ b/brutalmaze/constants.py @@ -42,7 +42,7 @@ RIGHT = (K_RIGHT, K_d) SQRT2 = 2 ** 0.5 INIT_SCORE = 5**0.5/2 + 0.5 # golden mean INIT_FPS = 30.0 -MAX_FPS = 144.0 +MAX_FPS = 60.0 SIZE = 640, 480 MAZE_SIZE = 10 ROAD_WIDTH = 5 # grids -- cgit 1.4.1