# HG changeset patch # User peter1138 # Date 2009-03-22 08:10:20 # Node ID 94579f1f60b3766ffd0f6b1c6242dfa6f07c248b # Parent 025ee7e5735704b598c66ffa1a21b4af3cec8e12 (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. diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -770,7 +770,7 @@ int DrawStationCoverageAreaText(int sx, } 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;