[Scummvm-cvs-logs] scummvm master -> 08457dda0d69c15347d9ac61d54f9e35942c32f5
sev-
sev at scummvm.org
Fri Nov 29 20:08:05 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:
08457dda0d FULLPIPE: Fix warning
Commit: 08457dda0d69c15347d9ac61d54f9e35942c32f5
https://github.com/scummvm/scummvm/commit/08457dda0d69c15347d9ac61d54f9e35942c32f5
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-11-29T11:07:18-08:00
Commit Message:
FULLPIPE: Fix warning
Changed paths:
engines/fullpipe/statics.cpp
diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp
index d14c3d8..b82875f 100644
--- a/engines/fullpipe/statics.cpp
+++ b/engines/fullpipe/statics.cpp
@@ -1235,7 +1235,7 @@ Movement::Movement(Movement *src, int *oldIdxs, int newSize, StaticANIObject *an
_m2y = src->_m2y;
if (newSize != -1) {
- if (newSize >= src->_dynamicPhases.size() + 1)
+ if (newSize >= (int)src->_dynamicPhases.size() + 1)
newSize = src->_dynamicPhases.size() + 1;
} else {
newSize = src->_dynamicPhases.size();
More information about the Scummvm-git-logs
mailing list