From 4c610d6ccff254df995343406e51a6724d2d17c5 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 30 Jan 2021 13:11:59 -0500 Subject: Game now renders onto a 320x240 canvas that gets stretched up --- src/consts.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/consts.h') 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 @@ const int GAME_WIDTH = 640; const int GAME_HEIGHT = 480; -const int MOVEMENT_SPEED = 4; -const int PARTY_FRAME_DELAY = 20;// / MOVEMENT_SPEED; +const int CANVAS_WIDTH = 320; +const int CANVAS_HEIGHT = 240; + +const int MOVEMENT_SPEED = 2; +const int PARTY_FRAME_DELAY = 10;// / MOVEMENT_SPEED; #endif /* end of include guard: CONSTS_H_9561E49C */ -- cgit 1.4.1