[Scummvm-cvs-logs] scummvm master -> 9bd7916452790e3e461508931cf20578dbb142d2
sev-
sev at scummvm.org
Mon Dec 30 23:23:22 CET 2013
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:
9bd7916452 FULLPIPE: Fix warning
Commit: 9bd7916452790e3e461508931cf20578dbb142d2
https://github.com/scummvm/scummvm/commit/9bd7916452790e3e461508931cf20578dbb142d2
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-12-30T14:22:46-08:00
Commit Message:
FULLPIPE: Fix warning
Changed paths:
engines/fullpipe/behavior.cpp
diff --git a/engines/fullpipe/behavior.cpp b/engines/fullpipe/behavior.cpp
index 208df90..75cb027 100644
--- a/engines/fullpipe/behavior.cpp
+++ b/engines/fullpipe/behavior.cpp
@@ -211,7 +211,7 @@ BehaviorEntryInfo *BehaviorManager::getBehaviorEntryInfoByMessageQueueDataId(Sta
if (_behaviors[i]->_ani == ani) {
for (uint j = 0; j < _behaviors[i]->_bheItems.size(); j++) {
if (_behaviors[i]->_bheItems[j]->_staticsId == id1) {
- for (uint k = 0; k < _behaviors[i]->_bheItems[j]->_itemsCount; k++) {
+ for (int k = 0; k < _behaviors[i]->_bheItems[j]->_itemsCount; k++) {
if (_behaviors[i]->_bheItems[j]->_items[k]->_messageQueue->_dataId == id2)
return _behaviors[i]->_bheItems[j]->_items[k];
}
More information about the Scummvm-git-logs
mailing list