aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/saveload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/saveload.cpp')
-rw-r--r--engines/macventure/saveload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/saveload.cpp b/engines/macventure/saveload.cpp
index c63b6a6951..f926d3cc8b 100644
--- a/engines/macventure/saveload.cpp
+++ b/engines/macventure/saveload.cpp
@@ -62,7 +62,7 @@ SaveStateDescriptor loadMetaData(Common::SeekableReadStream *s, int slot, bool s
// Depends on MACVENTURE_DESC_LENGTH
uint32 metaSize = s->readUint32BE();
- s->seek(-(5 + MACVENTURE_DESC_LENGTH + metaSize), SEEK_END);
+ s->seek(-((int32)(5 + MACVENTURE_DESC_LENGTH + metaSize)), SEEK_END);
// Load the thumbnail
Graphics::Surface *thumbnail;