[Scummvm-cvs-logs] scummvm master -> ad0ddcbb8ef1f8651e00f02fa325d4ed031e240e

bluegr md5 at scummvm.org
Mon Dec 12 17:19:56 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:
ad0ddcbb8e DREAMWEB: Fix typo in useWire() (thanks wjp, fuzzie)


Commit: ad0ddcbb8ef1f8651e00f02fa325d4ed031e240e
    https://github.com/scummvm/scummvm/commit/ad0ddcbb8ef1f8651e00f02fa325d4ed031e240e
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2011-12-12T08:19:17-08:00

Commit Message:
DREAMWEB: Fix typo in useWire() (thanks wjp, fuzzie)

Changed paths:
    engines/dreamweb/use.cpp



diff --git a/engines/dreamweb/use.cpp b/engines/dreamweb/use.cpp
index 9778fe1..0990e5b 100644
--- a/engines/dreamweb/use.cpp
+++ b/engines/dreamweb/use.cpp
@@ -1127,7 +1127,7 @@ void DreamGenContext::useWire() {
 	}
 
 	char axe[4] = { 'A', 'X', 'E', 'D' };	// TODO: convert to string with trailing zero
-	if (!compare(data.byte(kWithobject), data.byte(kWithtype), axe)) {
+	if (compare(data.byte(kWithobject), data.byte(kWithtype), axe)) {
 		showPuzText(16, 300);
 		putBackObStuff();
 		return;






More information about the Scummvm-git-logs mailing list