From 69e1c716e86a855b4379504bbb94a5483a63f43e Mon Sep 17 00:00:00 2001 From: celestar Date: Mon, 3 Apr 2006 09:07:21 +0000 Subject: (svn r4249) -Codechange: Replace more occurences of 16 by TILE_SIZE and of 8 by TILE_HEIGHT. Reverted one change from the previous commit because it was faulty --- bridge_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bridge_gui.c') diff --git a/bridge_gui.c b/bridge_gui.c index a2a04550c..2913853a0 100644 --- a/bridge_gui.c +++ b/bridge_gui.c @@ -162,6 +162,6 @@ void ShowBuildBridgeWindow(TileIndex start, TileIndex end, byte bridge_type) w->vscroll.cap = 4; w->vscroll.count = (byte)j; } else { - ShowErrorMessage(errmsg, STR_5015_CAN_T_BUILD_BRIDGE_HERE, TileX(end) * 16, TileY(end) * 16); + ShowErrorMessage(errmsg, STR_5015_CAN_T_BUILD_BRIDGE_HERE, TileX(end) * TILE_SIZE, TileY(end) * TILE_SIZE); } } -- cgit v1.2.3-54-g00ecf