From 6ff5a8a29fda832275f8960ed1620003d022e4ee Mon Sep 17 00:00:00 2001 From: belugas Date: Sat, 16 Feb 2008 02:37:31 +0000 Subject: (svn r12157) -Codechange: Remove a structure definition and replace it with another one closely matching -Codechange: Replace two magic numbers with according sprite names --- src/table/unmovable_land.h | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'src/table/unmovable_land.h') diff --git a/src/table/unmovable_land.h b/src/table/unmovable_land.h index 887e432bf..e7a97cb89 100644 --- a/src/table/unmovable_land.h +++ b/src/table/unmovable_land.h @@ -1,18 +1,9 @@ /* $Id$ */ -struct DrawTileUnmovableStruct { - uint16 image; - byte subcoord_x; - byte subcoord_y; - byte width; - byte height; - byte z_size; - byte unused; -}; -static const DrawTileUnmovableStruct _draw_tile_unmovable_data[] = { - {0xA29, 7, 7, 2, 2, 70, 0}, - {0xA2A, 4, 4, 7, 7, 61, 0}, +static const DrawTileSeqStruct _draw_tile_transmitterlighthouse_data[] = { + { 7, 7, 0, 2, 2, 70, {SPR_UNMOVABLE_TRANSMITTER, PAL_NONE}}, + { 4, 4, 0, 7, 7, 61, {SPR_UNMOVABLE_LIGHTHOUSE, PAL_NONE}}, }; #define TILE_SEQ_LINE(sz, img) { 0, 0, 0, 16, 16, sz, {img, PAL_NONE} }, -- cgit v1.2.3-54-g00ecf