diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2018-01-28 11:43:06 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2018-01-28 11:43:06 +0700 |
commit | fca23ea3ce86461f1b970afeb87fcbf5c3a124d3 (patch) | |
tree | 1a5cf7a5d467e125d34b3ba6fc0cfc0d4cd62697 | |
parent | f9e4ab3ef1fd45d71357319ff2abe3020302ab5c (diff) | |
download | brutalmaze-fca23ea3ce86461f1b970afeb87fcbf5c3a124d3.tar.gz |
Lower ridiculously high maximum FPS
-rw-r--r-- | brutalmaze/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |