From 4039bd9e8166bda5a8aadb9610fbef485ef54b85 Mon Sep 17 00:00:00 2001 From: Ryan Flegel Date: Sat, 29 May 2004 01:29:00 +0000 Subject: [PATCH] - small eq'n fixes SVN-Revision: 1360 --- src/defines.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/defines.h b/src/defines.h index 6b7216691..c191e33b6 100644 --- a/src/defines.h +++ b/src/defines.h @@ -54,8 +54,8 @@ enum DyingType { /* Screen-related stuff */ // +1 is needed because when tiles are wrapping around the screen there // are two partial tiles on the screen -#define VISIBLE_TILES_X 25 +1 -#define VISIBLE_TILES_Y 19 +1 +#define VISIBLE_TILES_X (25 +1) +#define VISIBLE_TILES_Y (19 +1) /* Sizes: */ @@ -92,8 +92,8 @@ enum DyingType { /* Size constraints: */ -#define X_OFFSCREEN_DISTANCE screen->w/2 -#define Y_OFFSCREEN_DISTANCE screen->h/2 +#define X_OFFSCREEN_DISTANCE (screen->w/2) +#define Y_OFFSCREEN_DISTANCE (screen->h/2) #define LEVEL_WIDTH 375 -- 2.11.0