diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-01-30 13:11:59 -0500 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-01-30 13:11:59 -0500 |
| commit | 4c610d6ccff254df995343406e51a6724d2d17c5 (patch) | |
| tree | 541aecec28fce88951755f82a517131a82d383e1 /src/consts.h | |
| parent | e3fcd5fc180b48e0710fbcbf6cfa94e906b8219c (diff) | |
| download | tanetane-4c610d6ccff254df995343406e51a6724d2d17c5.tar.gz tanetane-4c610d6ccff254df995343406e51a6724d2d17c5.tar.bz2 tanetane-4c610d6ccff254df995343406e51a6724d2d17c5.zip | |
Game now renders onto a 320x240 canvas that gets stretched up
Diffstat (limited to 'src/consts.h')
| -rw-r--r-- | src/consts.h | 7 |
1 files changed, 5 insertions, 2 deletions
| diff --git a/src/consts.h b/src/consts.h index d6bf90b..fcfdff2 100644 --- a/src/consts.h +++ b/src/consts.h | |||
| @@ -4,7 +4,10 @@ | |||
| 4 | const int GAME_WIDTH = 640; | 4 | const int GAME_WIDTH = 640; |
| 5 | const int GAME_HEIGHT = 480; | 5 | const int GAME_HEIGHT = 480; |
| 6 | 6 | ||
| 7 | const int MOVEMENT_SPEED = 4; | 7 | const int CANVAS_WIDTH = 320; |
| 8 | const int PARTY_FRAME_DELAY = 20;// / MOVEMENT_SPEED; | 8 | const int CANVAS_HEIGHT = 240; |
| 9 | |||
| 10 | const int MOVEMENT_SPEED = 2; | ||
| 11 | const int PARTY_FRAME_DELAY = 10;// / MOVEMENT_SPEED; | ||
| 9 | 12 | ||
| 10 | #endif /* end of include guard: CONSTS_H_9561E49C */ | 13 | #endif /* end of include guard: CONSTS_H_9561E49C */ |
