Changeset - r11438:94579f1f60b3
[Not reviewed]
master
0 1 0
peter1138 - 15 years ago 2009-03-22 08:10:20
peter1138@openttd.org
(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.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/misc_gui.cpp
Show inline comments
 
@@ -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;
0 comments (0 inline, 0 general)