[Scummvm-git-logs] scummvm master -> 062048f0c175f942525dff38fb400780331e635f

sev- sev at scummvm.org
Wed Aug 31 23:39:49 CEST 2016


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:
062048f0c1 FULLPIPE: Remove redundant type cast


Commit: 062048f0c175f942525dff38fb400780331e635f
    https://github.com/scummvm/scummvm/commit/062048f0c175f942525dff38fb400780331e635f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-08-31T23:39:29+02:00

Commit Message:
FULLPIPE: Remove redundant type cast

Changed paths:
    engines/fullpipe/messages.cpp



diff --git a/engines/fullpipe/messages.cpp b/engines/fullpipe/messages.cpp
index 981797c..9ddf0fd 100644
--- a/engines/fullpipe/messages.cpp
+++ b/engines/fullpipe/messages.cpp
@@ -682,7 +682,7 @@ int GlobalMessageQueueList::compact() {
 		useList[i] = 0;
 
 	for (uint i = 0; i < size();) {
-		if (((MessageQueue *)_storage[i])->_isFinished) {
+		if (_storage[i]->_isFinished) {
 			disableQueueById(_storage[i]->_id);
 			remove_at(i);
 		} else {





More information about the Scummvm-git-logs mailing list