(svn r8698) -Codechange: enumify the returns of VehicleEnterTile

This commit is contained in:
rubidium
2007-02-13 10:26:53 +00:00
parent eab6dd9898
commit a419f4aeda
11 changed files with 67 additions and 51 deletions

View File

@@ -742,7 +742,7 @@ static void ChangeTileOwner_Water(TileIndex tile, PlayerID old_player, PlayerID
static uint32 VehicleEnter_Water(Vehicle *v, TileIndex tile, int x, int y)
{
return 0;
return VETSB_CONTINUE;
}