diff -r e63b977925f7 -r b0d0df062880 misc_gui.c --- a/misc_gui.c Wed Dec 08 15:26:57 2004 +0000 +++ b/misc_gui.c Wed Dec 08 15:46:13 2004 +0000 @@ -640,12 +640,12 @@ DrawStringMultiLine(str_x, str_y, STR_SPEC_USERSTRING, 144); } -void DrawStationCoverageAreaText(int sx, int sy, uint mask) { +void DrawStationCoverageAreaText(int sx, int sy, uint mask, int rad) { int x = _thd.pos.x; 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); + GetAcceptanceAroundTiles(accepts, TILE_FROM_XY(x,y), _thd.new_size.x >> 4, _thd.new_size.y >> 4, rad); DrawStationCoverageText(accepts, sx, sy, mask); } }