diff options
author | peter1138 <peter1138@openttd.org> | 2009-02-18 09:14:41 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2009-02-18 09:14:41 +0000 |
commit | fd6a4800045c079fb1dde0415513e5e70def4804 (patch) | |
tree | 4217d1ab6251dc53bdccaba3c74a25ef2c57666a /src | |
parent | fe5acb59f75a382cec259aebda7c7bbaf13da427 (diff) | |
download | openttd-fd6a4800045c079fb1dde0415513e5e70def4804.tar.xz |
(svn r15513) -Cleanup: Unavailable varaction variable value does not matter, but at least it can be consistent.
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf_canal.cpp | 2 | ||||
-rw-r--r-- | src/newgrf_cargo.cpp | 2 | ||||
-rw-r--r-- | src/newgrf_generic.cpp | 2 | ||||
-rw-r--r-- | src/newgrf_industries.cpp | 2 | ||||
-rw-r--r-- | src/newgrf_industrytiles.cpp | 2 | ||||
-rw-r--r-- | src/newgrf_town.cpp | 2 |
6 files changed, 6 insertions, 6 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; } diff --git a/src/newgrf_cargo.cpp b/src/newgrf_cargo.cpp index 5e322a9ec..b0f262098 100644 --- a/src/newgrf_cargo.cpp +++ b/src/newgrf_cargo.cpp @@ -31,7 +31,7 @@ static uint32 CargoGetVariable(const ResolverObject *object, byte variable, byte DEBUG(grf, 1, "Unhandled cargo property 0x%X", variable); *available = false; - return 0; + return UINT_MAX; } diff --git a/src/newgrf_generic.cpp b/src/newgrf_generic.cpp index 465c75266..6ce92b7af 100644 --- a/src/newgrf_generic.cpp +++ b/src/newgrf_generic.cpp @@ -94,7 +94,7 @@ static uint32 GenericCallbackGetVariable(const ResolverObject *object, byte vari DEBUG(grf, 1, "Unhandled generic feature property 0x%02X", variable); *available = false; - return 0; + return UINT_MAX; } 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) diff --git a/src/newgrf_industrytiles.cpp b/src/newgrf_industrytiles.cpp index 46d5eedf2..ab35330b2 100644 --- a/src/newgrf_industrytiles.cpp +++ b/src/newgrf_industrytiles.cpp @@ -102,7 +102,7 @@ static uint32 IndustryTileGetVariable(const ResolverObject *object, byte variabl DEBUG(grf, 1, "Unhandled industry tile property 0x%X", variable); *available = false; - return (uint32)-1; + return UINT_MAX; } static const SpriteGroup *IndustryTileResolveReal(const ResolverObject *object, const SpriteGroup *group) diff --git a/src/newgrf_town.cpp b/src/newgrf_town.cpp index 4d24cce68..084bf640c 100644 --- a/src/newgrf_town.cpp +++ b/src/newgrf_town.cpp @@ -95,5 +95,5 @@ uint32 TownGetVariable(byte variable, byte parameter, bool *available, const Tow DEBUG(grf, 1, "Unhandled town property 0x%X", variable); *available = false; - return (uint32)-1; + return UINT_MAX; } |