diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 5 |
1 files changed, 3 insertions, 2 deletions
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) |