summary refs log tree commit diff stats
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h index a4620d4..1818cec 100644 --- a/src/game.h +++ b/src/game.h
@@ -14,7 +14,7 @@ const int TILE_HEIGHT = 8;
14const int GAME_WIDTH = 320; 14const int GAME_WIDTH = 320;
15const int GAME_HEIGHT = 200; 15const int GAME_HEIGHT = 200;
16const int MAP_WIDTH = GAME_WIDTH/TILE_WIDTH; 16const int MAP_WIDTH = GAME_WIDTH/TILE_WIDTH;
17const int MAP_HEIGHT = GAME_HEIGHT/TILE_HEIGHT; 17const int MAP_HEIGHT = GAME_HEIGHT/TILE_HEIGHT - 1;
18 18
19const int FRAMES_PER_SECOND = 60; 19const int FRAMES_PER_SECOND = 60;
20const double SECONDS_PER_FRAME = 1.0 / FRAMES_PER_SECOND; 20const double SECONDS_PER_FRAME = 1.0 / FRAMES_PER_SECOND;