1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-18 03:59:09 +00:00

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

This commit is contained in:
celestar
2007-02-13 15:44:37 +00:00
parent 8eab3964b4
commit 5e880a6a75

View File

@@ -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