Skip to content

Commit

Permalink
KYRA: Fix Kyra3 family album animation glitch, CID 1004139
Browse files Browse the repository at this point in the history
The first page wasn't animated, and it's likely that some of the
other right-page animations were slightly off as well.
  • Loading branch information
Torbjörn Andersson committed Aug 8, 2013
1 parent b885052 commit 6e5c308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/kyra/gui_mr.cpp
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 6e5c308

Please sign in to comment.