From ae726617427da0771639acdb31712ea23455c70a Mon Sep 17 00:00:00 2001 From: darkvater Date: Mon, 10 Jan 2005 22:36:11 +0000 Subject: (svn r1476) -Fix: [1099209] Catchment area with drag&drop stations (Celestar) --- misc_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc_gui.c') diff --git a/misc_gui.c b/misc_gui.c index ff0197c59..28bb9ad16 100644 --- a/misc_gui.c +++ b/misc_gui.c @@ -712,7 +712,7 @@ void DrawStationCoverageAreaText(int sx, int sy, uint mask, int rad) { int y = _thd.pos.y; uint accepts[NUM_CARGO]; if (x != -1) { - GetAcceptanceAroundTiles(accepts, TILE_FROM_XY(x,y), _thd.new_size.x >> 4, _thd.new_size.y >> 4, rad); + GetAcceptanceAroundTiles(accepts, TILE_FROM_XY(x, y), _thd.size.x /16, _thd.size.y /16 , rad); DrawStationCoverageText(accepts, sx, sy, mask); } } -- cgit v1.2.3-54-g00ecf