diff options
author | Max Horn | 2004-10-04 14:39:21 +0000 |
---|---|---|
committer | Max Horn | 2004-10-04 14:39:21 +0000 |
commit | 0de20e2911f585d8c79f4137423f7adf83851a44 (patch) | |
tree | a1615e6bbabd66e6780280fbffffa04f77376bf8 | |
parent | 4e268316d0f598b196ae05ec762b6987fe07b7a6 (diff) | |
download | scummvm-rg350-0de20e2911f585d8c79f4137423f7adf83851a44.tar.gz scummvm-rg350-0de20e2911f585d8c79f4137423f7adf83851a44.tar.bz2 scummvm-rg350-0de20e2911f585d8c79f4137423f7adf83851a44.zip |
cleanup
svn-id: r15411
-rw-r--r-- | scumm/script_v72he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index c8d66d2758..1d3333483a 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -668,7 +668,7 @@ const byte *ScummEngine_v72he::findWrappedBlock(uint32 tag, const byte *ptr, int offs += READ_LE_UINT32(offs + state * sizeof(uint32)); offs = findResourceData(tag, offs - 8); -; if (offs) + if (offs) return offs; offs = findResourceData(MKID('DEFA'), ptr); |