diff options
author | Filippos Karapetis | 2007-06-15 02:29:08 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-06-15 02:29:08 +0000 |
commit | cb15724147dd1695a9b17b4fd34ba1adf4554d37 (patch) | |
tree | 4062d8c0ca289159e986c2d15375a2f7acdce617 /engines/saga | |
parent | 163e77cd79dadac79c57820ac5549ba3332a5589 (diff) | |
download | scummvm-rg350-cb15724147dd1695a9b17b4fd34ba1adf4554d37.tar.gz scummvm-rg350-cb15724147dd1695a9b17b4fd34ba1adf4554d37.tar.bz2 scummvm-rg350-cb15724147dd1695a9b17b4fd34ba1adf4554d37.zip |
It's normal for cutaways to only have 1 frame
svn-id: r27408
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/animation.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/engines/saga/animation.cpp b/engines/saga/animation.cpp index 11712a65f8..5a0f5e1e2e 100644 --- a/engines/saga/animation.cpp +++ b/engines/saga/animation.cpp @@ -66,8 +66,6 @@ void Anim::loadCutawayList(const byte *resourcePointer, size_t resourceLength) { for (int i = 0; i < _cutawayListLength; i++) { _cutawayList[i].backgroundResourceId = cutawayS.readUint16LE(); _cutawayList[i].animResourceId = cutawayS.readUint16LE(); - if (_cutawayList[i].animResourceId == 0) - warning("Anim::loadCutawayList: Animation %i has an animResourceId equal to 0", i); _cutawayList[i].cycles = cutawayS.readSint16LE(); _cutawayList[i].frameRate = cutawayS.readSint16LE(); } @@ -163,12 +161,13 @@ void Anim::playCutaway(int cut, bool fade) { return; } - // FIXME: Some animations in IHNM have animResourceId equal to 0, for no obvious reason - // We skip them, to avoid ScummVM crashing - if (_cutawayList[cut].animResourceId == 0) { - warning("Anim::playCutaway: Animation %i has animResourceId equal to 0, skipping", cut); + // Some cutaways in IHNM have animResourceId equal to 0, which means that they only have + // a background frame and no animation. Those animations are actually game scripts. + // An example is the "nightfall" animation in Ben's chapter (fadein-fadeout), the animation + // for the second from the left monitor in Ellen's chapter etc + // Therefore, skip the animation bit if animResourceId is 0 and only show the background + if (_cutawayList[cut].animResourceId == 0) return; - } _vm->_resource->loadResource(context, _cutawayList[cut].animResourceId, resourceData, resourceDataLength); |