1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-02 11:29:10 +00:00

(svn r15801) -Fix (r15797): The new DrawStringMultiLine() now returns the new y position instead of the height, so we don't need to add it on.

This commit is contained in:
2009-03-22 08:10:20 +00:00
parent a07fae67c3
commit 4c02622cae

View File

@@ -770,7 +770,7 @@ int DrawStationCoverageAreaText(int sx, int sy, StationCoverageType sct, int rad
} else { } else {
GetAcceptanceAroundTiles(cargo, tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE , rad); GetAcceptanceAroundTiles(cargo, tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE , rad);
} }
return sy + DrawStationCoverageText(cargo, sx, sy, sct, supplies); return DrawStationCoverageText(cargo, sx, sy, sct, supplies);
} }
return sy; return sy;