about summary refs log tree commit diff homepage
path: root/brutalmaze/constants.py
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2017-10-19 20:28:56 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2017-10-19 21:54:07 +0700
commit43c7c55a396968d013e01648d77625ad6075f418 (patch)
tree141f27ddbffc8ec7986a6d99b55bd4471c3583d6 /brutalmaze/constants.py
parentbc72fbf25fa151bce1fd526fe5ca4d98c6bac293 (diff)
downloadbrutalmaze-43c7c55a396968d013e01648d77625ad6075f418.tar.gz
Improve drawing system
Diffstat (limited to 'brutalmaze/constants.py')
-rw-r--r--brutalmaze/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/brutalmaze/constants.py b/brutalmaze/constants.py
index e87a33b..fb10e28 100644
--- a/brutalmaze/constants.py
+++ b/brutalmaze/constants.py
@@ -30,7 +30,7 @@ GOLDEN_MEAN = 5**0.5/2 + 0.5
 
 INIT_FPS = 30.0
 SIZE = 640, 480
-MAZE_SIZE = 12
+MAZE_SIZE = 10
 ROAD_WIDTH = 5
 CELL_WIDTH = ROAD_WIDTH * 2
 MIDDLE = (MAZE_SIZE + MAZE_SIZE%2 - 1)*ROAD_WIDTH + ROAD_WIDTH//2