diff options
author | Eugene Sandulenko | 2018-07-21 13:24:17 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-07-21 13:24:17 +0200 |
commit | a8369132d689c6256dfd0f1bc0e6ab6e4e4f336a (patch) | |
tree | 42c129c5a33bc29812e1e52a6da05e398ad59e1a /engines/macventure | |
parent | 45137f34df748be01bbe9e935d1cdb0d26a5d808 (diff) | |
download | scummvm-rg350-a8369132d689c6256dfd0f1bc0e6ab6e4e4f336a.tar.gz scummvm-rg350-a8369132d689c6256dfd0f1bc0e6ab6e4e4f336a.tar.bz2 scummvm-rg350-a8369132d689c6256dfd0f1bc0e6ab6e4e4f336a.zip |
MACVENTURE: Fix warning
Diffstat (limited to 'engines/macventure')
-rw-r--r-- | engines/macventure/macventure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/macventure.cpp b/engines/macventure/macventure.cpp index ddc6d90a81..907349d41b 100644 --- a/engines/macventure/macventure.cpp +++ b/engines/macventure/macventure.cpp @@ -728,7 +728,7 @@ int MacVentureEngine::findObjectInArray(ObjID objID, const Common::Array<ObjID> } } // HACK, should use iterator - return found ? i : -1; + return found ? (int)i : -1; } uint MacVentureEngine::getPrefixNdx(ObjID obj) { |