[Scummvm-cvs-logs] SF.net SVN: scummvm:[50169] scummvm/trunk/engines/sci/graphics/ports.cpp
m_kiewitz at users.sourceforge.net
m_kiewitz at users.sourceforge.net
Tue Jun 22 23:05:34 CEST 2010
Revision: 50169
http://scummvm.svn.sourceforge.net/scummvm/?rev=50169&view=rev
Author: m_kiewitz
Date: 2010-06-22 21:05:34 +0000 (Tue, 22 Jun 2010)
Log Message:
-----------
SCI: reversing r50168, demo is using the same offTop as well (demo.bat)
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 21:01:34 UTC (rev 50168)
+++ scummvm/trunk/engines/sci/graphics/ports.cpp 2010-06-22 21:05:34 UTC (rev 50169)
@@ -90,8 +90,8 @@
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") && (!g_sci->isDemo()))
+ // Mixed-Up Fairy Tales (& its demo) 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);
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