aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/scn.cpp
diff options
context:
space:
mode:
authorMax Horn2008-08-02 23:01:14 +0000
committerMax Horn2008-08-02 23:01:14 +0000
commitb998a7ef07ca3b94de43502beac3ed1d08a4795d (patch)
treeff6946e518be5e27bc35b9700db9588ef11e3fa6 /engines/tinsel/scn.cpp
parent3047e084c1402af4f7643b718e655532c0e2c892 (diff)
downloadscummvm-rg350-b998a7ef07ca3b94de43502beac3ed1d08a4795d.tar.gz
scummvm-rg350-b998a7ef07ca3b94de43502beac3ed1d08a4795d.tar.bz2
scummvm-rg350-b998a7ef07ca3b94de43502beac3ed1d08a4795d.zip
Renamed Tinsel v1->v0 (used in the demo only), and v2->v1, to avoid confusion with DW2
svn-id: r33553
Diffstat (limited to 'engines/tinsel/scn.cpp')
-rw-r--r--engines/tinsel/scn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/scn.cpp b/engines/tinsel/scn.cpp
index b14b1c5962..8639979b41 100644
--- a/engines/tinsel/scn.cpp
+++ b/engines/tinsel/scn.cpp
@@ -50,7 +50,7 @@ byte *FindChunk(SCNHANDLE handle, uint32 chunk) {
// V1 chunk types can be found by substracting 2 from the
// chunk type. Note that CHUNK_STRING and CHUNK_BITMAP are
// the same in V1 and V2
- if (_vm->getVersion() == TINSEL_V1 &&
+ if (_vm->getVersion() == TINSEL_V0 &&
chunk != CHUNK_STRING && chunk != CHUNK_BITMAP)
chunk -= 0x2L;