diff options
Diffstat (limited to 'src/consts.h')
-rw-r--r-- | src/consts.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/consts.h b/src/consts.h index 141838b..78312c0 100644 --- a/src/consts.h +++ b/src/consts.h | |||
@@ -5,9 +5,11 @@ constexpr int GAME_WIDTH = 1280;//640*2; | |||
5 | constexpr int GAME_HEIGHT = 720;//480*2; | 5 | constexpr int GAME_HEIGHT = 720;//480*2; |
6 | constexpr int TILE_WIDTH = 8*2; | 6 | constexpr int TILE_WIDTH = 8*2; |
7 | constexpr int TILE_HEIGHT = TILE_WIDTH; | 7 | constexpr int TILE_HEIGHT = TILE_WIDTH; |
8 | constexpr int INIT_ZOOM = 5; | 8 | constexpr int INIT_ZOOM = 2; |
9 | constexpr int ZOOM_X_FACTOR = 16; | 9 | constexpr int ZOOM_X_FACTOR = 16; |
10 | constexpr int ZOOM_Y_FACTOR = 9; | 10 | constexpr int ZOOM_Y_FACTOR = 9; |
11 | constexpr int CHUNK_WIDTH = 80; | ||
12 | constexpr int CHUNK_HEIGHT = 80; | ||
11 | constexpr int RADIUS = 8; | 13 | constexpr int RADIUS = 8; |
12 | constexpr int NUM_TITLES = 1; | 14 | constexpr int NUM_TITLES = 1; |
13 | 15 | ||