[Scummvm-cvs-logs] SF.net SVN: scummvm:[50166] scummvm/trunk/engines/sci/graphics/ports.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Tue Jun 22 22:40:41 CEST 2010


Revision: 50166
          http://scummvm.svn.sourceforge.net/scummvm/?rev=50166&view=rev
Author:   m_kiewitz
Date:     2010-06-22 20:40:41 +0000 (Tue, 22 Jun 2010)

Log Message:
-----------
SCI: set offTop to 26 for mixed up fairy tales to fix all sorts of non-fully-removed windows

Modified Paths:
--------------
    scummvm/trunk/engines/sci/graphics/ports.cpp

Modified: scummvm/trunk/engines/sci/graphics/ports.cpp
===================================================================
--- scummvm/trunk/engines/sci/graphics/ports.cpp	2010-06-22 19:39:30 UTC (rev 50165)
+++ scummvm/trunk/engines/sci/graphics/ports.cpp	2010-06-22 20:40:41 UTC (rev 50166)
@@ -90,6 +90,9 @@
 	Common::String gameId = g_sci->getGameId();
 	if (gameId == "jones" || gameId == "slater" || gameId == "hoyle3" || gameId == "hoyle4" || (gameId == "mothergoose" && getSciVersion() == SCI_VERSION_1_EARLY))
 		offTop = 0;
+	// Mixed-Up Fairy Tales uses -w 26 0 200 320. If we don't also do this we will get not-fully-removed windows everywhere
+	if (gameId == "fairytales")
+		offTop = 26;
 
 	openPort(_wmgrPort);
 	setPort(_wmgrPort);


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