diff options
author | Max Horn | 2003-01-06 18:46:07 +0000 |
---|---|---|
committer | Max Horn | 2003-01-06 18:46:07 +0000 |
commit | 02ff51659029afc2fce592d496f46aa94d172085 (patch) | |
tree | bdac87a331aed271d7f927738cb2b88b684e83ba | |
parent | 9270a0558b8b3cac00d998053450da270a46823d (diff) | |
download | scummvm-rg350-02ff51659029afc2fce592d496f46aa94d172085.tar.gz scummvm-rg350-02ff51659029afc2fce592d496f46aa94d172085.tar.bz2 scummvm-rg350-02ff51659029afc2fce592d496f46aa94d172085.zip |
scaling bug fix
svn-id: r6349
-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 b0c4a53f47..bc60b3f34e 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -825,7 +825,7 @@ void Scumm::initRoomSubBlocks() ptr = findResourceData(MKID('SCAL'), roomptr); if (ptr) { offs = ptr - roomptr; - if (_features & GF_AFTER_V7) { + if (_features & GF_AFTER_V8) { for (i = 1; i < _maxScaleTable; i++, offs += 16) { int a = READ_LE_UINT32(roomptr + offs); int b = READ_LE_UINT32(roomptr + offs + 4); |