summaryrefslogtreecommitdiff
path: root/src/newgrf_canal.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2009-02-18 09:14:41 +0000
committerpeter1138 <peter1138@openttd.org>2009-02-18 09:14:41 +0000
commit3bafe9b0e2e47d1675129848ed366e8a4959ac70 (patch)
tree4217d1ab6251dc53bdccaba3c74a25ef2c57666a /src/newgrf_canal.cpp
parentf1620f6984583fb9d6c306f2bce698e4cc1a44be (diff)
downloadopenttd-3bafe9b0e2e47d1675129848ed366e8a4959ac70.tar.xz
(svn r15513) -Cleanup: Unavailable varaction variable value does not matter, but at least it can be consistent.
Diffstat (limited to 'src/newgrf_canal.cpp')
-rw-r--r--src/newgrf_canal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_canal.cpp b/src/newgrf_canal.cpp
index c74bfd4d1..4a1278848 100644
--- a/src/newgrf_canal.cpp
+++ b/src/newgrf_canal.cpp
@@ -56,7 +56,7 @@ static uint32 CanalGetVariable(const ResolverObject *object, byte variable, byte
DEBUG(grf, 1, "Unhandled canal property 0x%02X", variable);
*available = false;
- return 0;
+ return UINT_MAX;
}