diff options
Diffstat (limited to 'src/openttd.h')
-rw-r--r-- | src/openttd.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/openttd.h b/src/openttd.h index 0126d72c8..b4581ea36 100644 --- a/src/openttd.h +++ b/src/openttd.h @@ -361,10 +361,7 @@ typedef void ClickTileProc(TileIndex tile); typedef void AnimateTileProc(TileIndex tile); typedef void TileLoopProc(TileIndex tile); typedef void ChangeTileOwnerProc(TileIndex tile, PlayerID old_player, PlayerID new_player); -/* Return value has bit 0x2 set, when the vehicle enters a station. Then, - * result << 8 contains the id of the station entered. If the return value has - * bit 0x8 set, the vehicle could not and did not enter the tile. Are there - * other bits that can be set? */ +/** @see VehicleEnterTileStatus to see what the return values mean */ typedef uint32 VehicleEnterTileProc(Vehicle *v, TileIndex tile, int x, int y); typedef Slope GetSlopeTilehProc(TileIndex, Slope tileh); |