(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 a07fae67c3
commit 4c02622cae
1 changed files with 1 additions and 1 deletions

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;