[Scummvm-cvs-logs] scummvm master -> 7d9d53d2badfdf124fa67360599087f1e5fc06e2

tramboi bertrand_augereau at yahoo.fr
Tue Dec 6 09:09:47 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:
7d9d53d2ba DREAMWEB: Fix symbol puzzle


Commit: 7d9d53d2badfdf124fa67360599087f1e5fc06e2
    https://github.com/scummvm/scummvm/commit/7d9d53d2badfdf124fa67360599087f1e5fc06e2
Author: Bertrand Augereau (bertrand_augereau at yahoo.fr)
Date: 2011-12-06T03:08:13-08:00

Commit Message:
DREAMWEB: Fix symbol puzzle

Changed paths:
    engines/dreamweb/stubs.cpp



diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp
index 1a26385..4b64102 100644
--- a/engines/dreamweb/stubs.cpp
+++ b/engines/dreamweb/stubs.cpp
@@ -3388,7 +3388,7 @@ void DreamGenContext::setTopLeft() {
 		commandOnly(19);
 	}
 
-	if (data.word(kMousebutton) != 0);
+	if (data.word(kMousebutton) != 0)
 		data.byte(kSymboltopdir) = 0xFF;
 }
 
@@ -3403,7 +3403,7 @@ void DreamGenContext::setTopRight() {
 		commandOnly(20);
 	}
 
-	if (data.word(kMousebutton) != 0);
+	if (data.word(kMousebutton) != 0)
 		data.byte(kSymboltopdir) = 1;
 }
 
@@ -3418,7 +3418,7 @@ void DreamGenContext::setBotLeft() {
 		commandOnly(21);
 	}
 
-	if (data.word(kMousebutton) != 0);
+	if (data.word(kMousebutton) != 0)
 		data.byte(kSymbolbotdir) = 0xFF;
 }
 
@@ -3433,7 +3433,7 @@ void DreamGenContext::setBotRight() {
 		commandOnly(22);
 	}
 
-	if (data.word(kMousebutton) != 0);
+	if (data.word(kMousebutton) != 0)
 		data.byte(kSymbolbotdir) = 1;
 }
 






More information about the Scummvm-git-logs mailing list