KYRA: Fix Kyra3 family album animation glitch, CID 1004139

The first page wasn't animated, and it's likely that some of the
other right-page animations were slightly off as well.
This commit is contained in:
Torbjörn Andersson 2013-08-08 07:16:24 +02:00
parent b8850522b6
commit 6e5c308b91

View File

@ -737,7 +737,7 @@ void KyraEngine_MR::loadAlbumPageWSA() {
if (_album.curPage != 14) {
filename = Common::String::format("PAGE%x.WSA", _album.curPage+1);
_album.rightPage.wsa->open(filename.c_str(), 1, 0);
_album.rightPage.maxFrame = _album.leftPage.wsa->frames()-1;
_album.rightPage.maxFrame = _album.rightPage.wsa->frames()-1;
}
}