[Scummvm-cvs-logs] scummvm master -> 6002e1a7ab64dab430449291c41159ae86a1d88b

bluegr md5 at scummvm.org
Tue Dec 6 16:14:54 CET 2011


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:
6002e1a7ab DREAMWEB: Fixed delEverything() (thanks tramboi)


Commit: 6002e1a7ab64dab430449291c41159ae86a1d88b
    https://github.com/scummvm/scummvm/commit/6002e1a7ab64dab430449291c41159ae86a1d88b
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2011-12-06T07:13:51-08:00

Commit Message:
DREAMWEB: Fixed delEverything() (thanks tramboi)

Changed paths:
    engines/dreamweb/stubs.cpp



diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp
index 313fec6..ea39e00 100644
--- a/engines/dreamweb/stubs.cpp
+++ b/engines/dreamweb/stubs.cpp
@@ -3614,7 +3614,7 @@ void DreamGenContext::obsThatDoThings() {
 }
 
 void DreamGenContext::delEverything() {
-	if (data.byte(kMapysize) + data.word(kMapoffsety) == 182) {
+	if (data.byte(kMapysize) + data.word(kMapoffsety) < 182) {
 		mapToPanel();
 	} else {
 		// Big room






More information about the Scummvm-git-logs mailing list