[Scummvm-cvs-logs] scummvm master -> 6c443ab5fe561ec6f267fabbfee59fb27a6e7786

wjp wjp at usecode.org
Sat Dec 10 18:17:38 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:
6c443ab5fe DREAMWEB: Fix regression in quitSymbol


Commit: 6c443ab5fe561ec6f267fabbfee59fb27a6e7786
    https://github.com/scummvm/scummvm/commit/6c443ab5fe561ec6f267fabbfee59fb27a6e7786
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2011-12-10T09:17:02-08:00

Commit Message:
DREAMWEB: Fix regression in quitSymbol

Changed paths:
    engines/dreamweb/keypad.cpp



diff --git a/engines/dreamweb/keypad.cpp b/engines/dreamweb/keypad.cpp
index 8707354..09bdcb8 100644
--- a/engines/dreamweb/keypad.cpp
+++ b/engines/dreamweb/keypad.cpp
@@ -255,7 +255,7 @@ void DreamGenContext::quitSymbol() {
 		commandOnly(18);
 	}
 
-	if (data.word(kMousebutton) = data.word(kOldbutton))
+	if (data.word(kMousebutton) == data.word(kOldbutton))
 		return;	// notqs
 
 	if (!(data.word(kMousebutton) & 1))






More information about the Scummvm-git-logs mailing list