[Scummvm-cvs-logs] scummvm master -> 6e5c308b91031b8b7ae2dc5dd87bb4c2bc20ad81

eriktorbjorn eriktorbjorn at telia.com
Thu Aug 8 07:19:43 CEST 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6e5c308b91 KYRA: Fix Kyra3 family album animation glitch, CID 1004139


Commit: 6e5c308b91031b8b7ae2dc5dd87bb4c2bc20ad81
    https://github.com/scummvm/scummvm/commit/6e5c308b91031b8b7ae2dc5dd87bb4c2bc20ad81
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2013-08-07T22:16:24-07:00

Commit Message:
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.

Changed paths:
    engines/kyra/gui_mr.cpp



diff --git a/engines/kyra/gui_mr.cpp b/engines/kyra/gui_mr.cpp
index bcbfe27..ee0303c 100644
--- a/engines/kyra/gui_mr.cpp
+++ b/engines/kyra/gui_mr.cpp
@@ -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;
 	}
 }
 






More information about the Scummvm-git-logs mailing list