From 29c076009058ebc2eb3a6ffe4aa11e91e1a8048f Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Date: Mon, 19 Jul 2021 23:46:04 +0100 Subject: Misc: Added screen size defines in the config --- config.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index a40e76f..6650843 100644 --- a/config.h +++ b/config.h @@ -3,11 +3,12 @@ #define DEBUG 1 +#define SCREEN_WIDTH 852 +#define SCREEN_HEIGHT 480 + #define INSTRUCTIONS_PER_SECOND 700 #define GAME_LOAD_LOCATION 0x200 #define FONT_LOAD_LOCATION 0x50 -#define PIXEL_RATIO 10 - #define dbgprintf(fmt, ...) \ do { if(DEBUG) fprintf (stdout, fmt, ##__VA_ARGS__); } while(0) -- cgit 1.4.1