(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:
peter1138
2009-03-22 08:10:20 +00:00
parent 136bbbea9c
commit 82a535085d

View File

@@ -770,7 +770,7 @@ int DrawStationCoverageAreaText(int sx, int sy, StationCoverageType sct, int rad
} else {
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;