summaryrefslogtreecommitdiff
path: root/src/newgrf_industries.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
commitfd6a4800045c079fb1dde0415513e5e70def4804 (patch)
tree4217d1ab6251dc53bdccaba3c74a25ef2c57666a /src/newgrf_industries.cpp
parentfe5acb59f75a382cec259aebda7c7bbaf13da427 (diff)
downloadopenttd-fd6a4800045c079fb1dde0415513e5e70def4804.tar.xz
(svn r15513) -Cleanup: Unavailable varaction variable value does not matter, but at least it can be consistent.
Diffstat (limited to 'src/newgrf_industries.cpp')
-rw-r--r--src/newgrf_industries.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_industries.cpp b/src/newgrf_industries.cpp
index 1121edeb5..e6f18a445 100644
--- a/src/newgrf_industries.cpp
+++ b/src/newgrf_industries.cpp
@@ -380,7 +380,7 @@ uint32 IndustryGetVariable(const ResolverObject *object, byte variable, byte par
DEBUG(grf, 1, "Unhandled industry property 0x%X", variable);
*available = false;
- return (uint32)-1;
+ return UINT_MAX;
}
static const SpriteGroup *IndustryResolveReal(const ResolverObject *object, const SpriteGroup *group)