From 6443c14ebd7ed0f9920673c218eaaa1172076a5f Mon Sep 17 00:00:00 2001 From: celestar Date: Mon, 3 Apr 2006 05:32:11 +0000 Subject: (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE --- command.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'command.c') diff --git a/command.c b/command.c index b7c3a5ede..d7436be00 100644 --- a/command.c +++ b/command.c @@ -317,7 +317,7 @@ byte GetCommandFlags(uint cmd) {return _command_proc_table[cmd & 0xFF].flags;} int32 DoCommandByTile(TileIndex tile, uint32 p1, uint32 p2, uint32 flags, uint procc) { - return DoCommand(TileX(tile) * 16, TileY(tile) * 16, p1, p2, flags, procc); + return DoCommand(TileX(tile) * TILE_SIZE, TileY(tile) * TILE_SIZE, p1, p2, flags, procc); } @@ -401,8 +401,8 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback, bool notest; StringID error_part1; - int x = TileX(tile) * 16; - int y = TileY(tile) * 16; + int x = TileX(tile) * TILE_SIZE; + int y = TileY(tile) * TILE_SIZE; /* Do not even think about executing out-of-bounds tile-commands */ if (tile >= MapSize()) { -- cgit v1.2.3-54-g00ecf