From fd0f57a79485641b632da4525e28ae397c892e54 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/road_land.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/table/road_land.h') diff --git a/src/table/road_land.h b/src/table/road_land.h index 4b46cf3eb..32980606a 100644 --- a/src/table/road_land.h +++ b/src/table/road_land.h @@ -1,7 +1,7 @@ /* $Id$ */ -#define TILE_SEQ_LINE(img, pal, dx, dy, sx, sy) { dx, dy, 0, sx, sy, 20, img, pal }, -#define TILE_SEQ_END() { 0, 0, 0, 0, 0, 0, 0, 0 } +#define TILE_SEQ_LINE(img, pal, dx, dy, sx, sy) { dx, dy, 0, sx, sy, 20, {img, pal} }, +#define TILE_SEQ_END() { 0, 0, 0, 0, 0, 0, {0, 0} } static const DrawTileSeqStruct _road_depot_NE[] = { TILE_SEQ_LINE(0x584 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 0, 15, 16, 1) -- cgit v1.2.3-54-g00ecf