Changeset - r12231:9913d4bd463d
[Not reviewed]
master
0 1 0
smatz - 15 years ago 2009-06-25 16:07:23
smatz@openttd.org
(svn r16656) -Fix (r16655): strange things happen
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/station.cpp
Show inline comments
 
@@ -188,7 +188,7 @@ void Station::MarkTilesDirty(bool cargo_
 

	
 
bool Station::TileBelongsToRailStation(TileIndex tile) const
 
{
 
	return IsRailwayStationTile(tile) && GetStationIndex(tile) = this->index;
 
	return IsRailwayStationTile(tile) && GetStationIndex(tile) == this->index;
 
}
 

	
 
/** Obtain the length of a platform
0 comments (0 inline, 0 general)