From 7ea878b938d9bfa3224fa40f16182555632b260f Mon Sep 17 00:00:00 2001 From: fonsinchen Date: Sat, 10 Aug 2013 12:47:13 +0000 Subject: (svn r25709) -Fix: don't return -1 as unsigned --- src/script/api/script_town.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/script') diff --git a/src/script/api/script_town.cpp b/src/script/api/script_town.cpp index fa4b9c0c7..b64adab1a 100644 --- a/src/script/api/script_town.cpp +++ b/src/script/api/script_town.cpp @@ -120,8 +120,8 @@ /* static */ uint32 ScriptTown::GetCargoGoal(TownID town_id, ScriptCargo::TownEffect towneffect_id) { - if (!IsValidTown(town_id)) return -1; - if (!ScriptCargo::IsValidTownEffect(towneffect_id)) return -1; + if (!IsValidTown(town_id)) return UINT32_MAX; + if (!ScriptCargo::IsValidTownEffect(towneffect_id)) return UINT32_MAX; const Town *t = ::Town::Get(town_id); -- cgit v1.2.3-54-g00ecf