mirror of https://github.com/OpenTTD/OpenTTD
(svn r17701) -Codechange: don't start line with a space if it's not inside comment
parent
b243f6ca97
commit
6c7f8fc8b4
|
@ -528,7 +528,7 @@ void NetworkUDPAdvertiseThread(void *pntr)
|
|||
}
|
||||
|
||||
/* Register us to the master server
|
||||
This function checks if it needs to send an advertise */
|
||||
* This function checks if it needs to send an advertise */
|
||||
void NetworkUDPAdvertise()
|
||||
{
|
||||
/* Check if we should send an advertise */
|
||||
|
|
|
@ -130,7 +130,7 @@ bool TryReserveRailTrack(TileIndex tile, Track t)
|
|||
* @param tile the tile
|
||||
* @param t the track
|
||||
*/
|
||||
void UnreserveRailTrack(TileIndex tile, Track t)
|
||||
void UnreserveRailTrack(TileIndex tile, Track t)
|
||||
{
|
||||
assert((GetTileTrackStatus(tile, TRANSPORT_RAIL, 0) & TrackToTrackBits(t)) != 0);
|
||||
|
||||
|
|
|
@ -18,7 +18,8 @@
|
|||
RoadStopPool _roadstop_pool("RoadStop");
|
||||
INSTANTIATE_POOL_METHODS(RoadStop)
|
||||
|
||||
/** De-Initializes a RoadStops. This includes clearing all slots that vehicles might
|
||||
/**
|
||||
* De-Initializes RoadStops. This includes clearing all slots that vehicles might
|
||||
* have and unlinks it from the linked list of road stops at the given station
|
||||
*/
|
||||
RoadStop::~RoadStop()
|
||||
|
|
Loading…
Reference in New Issue