aboutsummaryrefslogtreecommitdiff
path: root/scumm/scummvm.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-04-28 18:19:48 +0000
committerPaweł Kołodziejski2003-04-28 18:19:48 +0000
commit850ee739afcb2a15d016d78b782fd073bf5b75ca (patch)
tree589e73fcdd9b07673caee88c0892b8fb840a9ce5 /scumm/scummvm.cpp
parent12c44ba73d8a3317c47aed7ae172fca6766feab8 (diff)
downloadscummvm-rg350-850ee739afcb2a15d016d78b782fd073bf5b75ca.tar.gz
scummvm-rg350-850ee739afcb2a15d016d78b782fd073bf5b75ca.tar.bz2
scummvm-rg350-850ee739afcb2a15d016d78b782fd073bf5b75ca.zip
fixed two offsets for V2 and two warnings
svn-id: r7185
Diffstat (limited to 'scumm/scummvm.cpp')
-rw-r--r--scumm/scummvm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index e14ab5c4dd..447f88642c 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -1096,7 +1096,7 @@ void Scumm::initRoomSubBlocks() {
// HACK: to determine the sizes of the local scripts, we assume that
// a) their order in the data file is the same as in the index
// b) the last script at the same time is the last item in the room "header"
- int len = - _localScriptList[id - _numGlobalScripts] + _resourceHeaderSize;
+ int len = - (int)_localScriptList[id - _numGlobalScripts] + _resourceHeaderSize;
if (*ptr)
len += READ_LE_UINT16(ptr + 1);
else