(svn r8708) -Codechange(r8514): No need to use "this->" in methods

pull/155/head
celestar 18 years ago
parent a89f2fd610
commit bf147e395e

@ -184,7 +184,7 @@ bool Station::TileBelongsToRailStation(TileIndex tile) const
*/
bool Station::IsBuoy() const
{
return (this->had_vehicle_of_type & HVOT_BUOY) != 0;
return (had_vehicle_of_type & HVOT_BUOY) != 0;
}
/** Determines whether a station exists

Loading…
Cancel
Save