[Scummvm-cvs-logs] scummvm master -> 63a51839ce0bf424b236ed969ef3c295c80e2e98

sev- sev at scummvm.org
Fri Jan 10 20:48:55 CET 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:
63a51839ce FULLPIPE: Fix warning


Commit: 63a51839ce0bf424b236ed969ef3c295c80e2e98
    https://github.com/scummvm/scummvm/commit/63a51839ce0bf424b236ed969ef3c295c80e2e98
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-01-10T11:48:11-08:00

Commit Message:
FULLPIPE: Fix warning

Changed paths:
    engines/fullpipe/scenes/scene32.cpp



diff --git a/engines/fullpipe/scenes/scene32.cpp b/engines/fullpipe/scenes/scene32.cpp
index 8d462fb..26fb5e1 100644
--- a/engines/fullpipe/scenes/scene32.cpp
+++ b/engines/fullpipe/scenes/scene32.cpp
@@ -120,7 +120,7 @@ void sceneHandler32_startCactus() {
 void sceneHandler32_spin(ExCommand *cmd) {
 	MessageQueue *mq = g_fp->_globalMessageQueueList->getMessageQueueById(cmd->_parId);
 
-	if (!mq || !mq->getCount() <= 0)
+	if (!mq || mq->getCount() <= 0)
 		return;
 
 	ExCommand *ex = mq->getExCommandByIndex(0);






More information about the Scummvm-git-logs mailing list