diff options
| author | Travis Howell | 2006-02-11 00:44:04 +0000 |
|---|---|---|
| committer | Travis Howell | 2006-02-11 00:44:04 +0000 |
| commit | 44763fcce90a9ccfb40d1430e015b45546f08569 (patch) | |
| tree | a79a216ba70de56ecda55789a2db85d3873bd86a /scumm/script_v72he.cpp | |
| parent | 590289d937be8104f03a22727f0796c22106ffda (diff) | |
| download | scummvm-rg350-44763fcce90a9ccfb40d1430e015b45546f08569.tar.gz scummvm-rg350-44763fcce90a9ccfb40d1430e015b45546f08569.tar.bz2 scummvm-rg350-44763fcce90a9ccfb40d1430e015b45546f08569.zip | |
Add support for Spanish version of balloon
svn-id: r20484
Diffstat (limited to 'scumm/script_v72he.cpp')
| -rw-r--r-- | scumm/script_v72he.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index 8b335bf425..3501a88d41 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -766,15 +766,7 @@ int ScummEngine_v72he::findObject(int x, int y, int num, int *args) { } void ScummEngine_v72he::o72_pushDWord() { - int a; - if (*_lastCodePtr + sizeof(MemBlkHeader) != _scriptOrgPointer) { - uint32 oldoffs = _scriptPointer - _scriptOrgPointer; - getScriptBaseAddress(); - _scriptPointer = _scriptOrgPointer + oldoffs; - } - a = READ_LE_UINT32(_scriptPointer); - _scriptPointer += 4; - push(a); + push(fetchScriptDWordSigned()); } void ScummEngine_v72he::o72_getScriptString() { |
