diff options
| author | Paweł Kołodziejski | 2003-04-28 18:19:48 +0000 |
|---|---|---|
| committer | Paweł Kołodziejski | 2003-04-28 18:19:48 +0000 |
| commit | 850ee739afcb2a15d016d78b782fd073bf5b75ca (patch) | |
| tree | 589e73fcdd9b07673caee88c0892b8fb840a9ce5 /scumm/scummvm.cpp | |
| parent | 12c44ba73d8a3317c47aed7ae172fca6766feab8 (diff) | |
| download | scummvm-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.cpp | 2 |
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 |
