[Scummvm-cvs-logs] scummvm master -> 7da29858e7b582f6914e0cc4f4e2938cb425a49e

bluegr md5 at scummvm.org
Mon Feb 13 11:07:27 CET 2012


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:
7da29858e7 SCI: Fix the order of diagonal roll transitions in the old lookup table


Commit: 7da29858e7b582f6914e0cc4f4e2938cb425a49e
    https://github.com/scummvm/scummvm/commit/7da29858e7b582f6914e0cc4f4e2938cb425a49e
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2012-02-13T02:06:35-08:00

Commit Message:
SCI: Fix the order of diagonal roll transitions in the old lookup table

This fixes several inverted transitions (like in SQ3, ICEMAN, Hoyle 1 etc) - bug #3485194

Changed paths:
    engines/sci/graphics/transitions.cpp



diff --git a/engines/sci/graphics/transitions.cpp b/engines/sci/graphics/transitions.cpp
index 438cf37..b385c2c 100644
--- a/engines/sci/graphics/transitions.cpp
+++ b/engines/sci/graphics/transitions.cpp
@@ -52,8 +52,8 @@ static const GfxTransitionTranslateEntry oldTransitionIDs[] = {
 	{   3, SCI_TRANSITIONS_STRAIGHT_FROM_LEFT,			false },
 	{   4, SCI_TRANSITIONS_STRAIGHT_FROM_BOTTOM,		false },
 	{   5, SCI_TRANSITIONS_STRAIGHT_FROM_TOP,			false },
-	{   6, SCI_TRANSITIONS_DIAGONALROLL_FROMCENTER,		false },
-	{   7, SCI_TRANSITIONS_DIAGONALROLL_TOCENTER,		false },
+	{   6, SCI_TRANSITIONS_DIAGONALROLL_TOCENTER,		false },
+	{   7, SCI_TRANSITIONS_DIAGONALROLL_FROMCENTER,		false },
 	{   8, SCI_TRANSITIONS_BLOCKS,						false },
 	{   9, SCI_TRANSITIONS_VERTICALROLL_TOCENTER,		false },
 	{  10, SCI_TRANSITIONS_HORIZONTALROLL_TOCENTER,		false },






More information about the Scummvm-git-logs mailing list