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

Strangerke Strangerke at scummvm.org
Mon May 26 21:49:18 CEST 2014


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:
f0cdc47226 MADS: Fix issue in KernelMessages::processText()


Commit: f0cdc47226db90ce99f2e83f0a2643e49d71d3ed
    https://github.com/scummvm/scummvm/commit/f0cdc47226db90ce99f2e83f0a2643e49d71d3ed
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-05-26T21:47:40+02:00

Commit Message:
MADS: Fix issue in KernelMessages::processText()

Changed paths:
    engines/mads/messages.cpp



diff --git a/engines/mads/messages.cpp b/engines/mads/messages.cpp
index 263d8fa..e85a582 100644
--- a/engines/mads/messages.cpp
+++ b/engines/mads/messages.cpp
@@ -173,7 +173,7 @@ void KernelMessages::processText(int msgIndex) {
 
 	if ((msg._flags & KMSG_EXPIRE) != 0) {
 		scene._textDisplay.expire(msg._textDisplayIndex);
-		msg._flags &= !KMSG_ACTIVE;
+		msg._flags &= ~KMSG_ACTIVE;
 		return;
 	}
 






More information about the Scummvm-git-logs mailing list