summaryrefslogtreecommitdiff
path: root/src/water_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-02-13 10:26:53 +0000
committerrubidium <rubidium@openttd.org>2007-02-13 10:26:53 +0000
commita419f4aedadc526377d24e30bfd967e29255498e (patch)
treea8d30d13565c6ebb15b7a0857e33c317d033e666 /src/water_cmd.cpp
parenteab6dd989821a2cacb96a94de0da789214f6e2b4 (diff)
downloadopenttd-a419f4aedadc526377d24e30bfd967e29255498e.tar.xz
(svn r8698) -Codechange: enumify the returns of VehicleEnterTile
Diffstat (limited to 'src/water_cmd.cpp')
-rw-r--r--src/water_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/water_cmd.cpp b/src/water_cmd.cpp
index 00f2fa934..cd42138d5 100644
--- a/src/water_cmd.cpp
+++ b/src/water_cmd.cpp
@@ -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;
}