[Scummvm-cvs-logs] SF.net SVN: scummvm:[47611] scummvm/trunk/engines/sci/engine/kgraphics.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Wed Jan 27 22:33:55 CET 2010


Revision: 47611
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47611&view=rev
Author:   m_kiewitz
Date:     2010-01-27 21:33:51 +0000 (Wed, 27 Jan 2010)

Log Message:
-----------
SCI: added workaround for laura bow 2 game menu (same issue as in pharkas)...sigh

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/kgraphics.cpp

Modified: scummvm/trunk/engines/sci/engine/kgraphics.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kgraphics.cpp	2010-01-27 21:11:24 UTC (rev 47610)
+++ scummvm/trunk/engines/sci/engine/kgraphics.cpp	2010-01-27 21:33:51 UTC (rev 47611)
@@ -945,6 +945,13 @@
 			priority = 15;
 	}
 
+	if (s->_gameId == "laurabow2") {
+		// WORKAROUND
+		// see the one above
+		if ((viewId == 995) && (priority == 0))
+			priority = 15;
+	}
+
 	s->_gui->drawCel(viewId, loopNo, celNo, x, y, priority, paletteNo, hiresMode, upscaledHiresHandle);
 
 	return s->r_acc;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list