diff options
| -rw-r--r-- | engines/sci/graphics/ports.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/ports.cpp b/engines/sci/graphics/ports.cpp index 9f0edb290f..571687a05f 100644 --- a/engines/sci/graphics/ports.cpp +++ b/engines/sci/graphics/ports.cpp @@ -91,7 +91,7 @@ void GfxPorts::init(bool usesOldGfxFunctions, GfxPaint16 *paint16, GfxText16 *te  	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") +	if ((gameId == "fairytales") && (!g_sci->isDemo()))  		offTop = 26;  	openPort(_wmgrPort);  | 
