From ae996a270b4b13b1130249e9249b3fa92caed3d9 Mon Sep 17 00:00:00 2001 From: frosch Date: Fri, 15 Feb 2008 18:34:26 +0000 Subject: (svn r12148) -Codechange: Merge 'image' and 'pal' of DrawTileSeqStruct into one PalSpriteID --- src/table/station_land.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/table/station_land.h') diff --git a/src/table/station_land.h b/src/table/station_land.h index 1e8356e4d..87523d5f5 100644 --- a/src/table/station_land.h +++ b/src/table/station_land.h @@ -1,8 +1,8 @@ /* $Id$ */ -#define TILE_SEQ_LINE(dx, dy, dz, sx, sy, sz, img) { dx, dy, dz, sx, sy, sz, img, PAL_NONE }, -#define TILE_SEQ_LINE_PAL(dx, dy, dz, sx, sy, sz, img, pal) { dx, dy, dz, sx, sy, sz, img, pal }, -#define TILE_SEQ_END() { (byte)0x80, 0, 0, 0, 0, 0, 0, 0 } +#define TILE_SEQ_LINE(dx, dy, dz, sx, sy, sz, img) { dx, dy, dz, sx, sy, sz, {img, PAL_NONE} }, +#define TILE_SEQ_LINE_PAL(dx, dy, dz, sx, sy, sz, img, pal) { dx, dy, dz, sx, sy, sz, {img, pal} }, +#define TILE_SEQ_END() { (byte)0x80, 0, 0, 0, 0, 0, {0, 0} } static const DrawTileSeqStruct _station_display_nothing[] = { TILE_SEQ_END() -- cgit v1.2.3-54-g00ecf