[Scummvm-cvs-logs] scummvm master -> 17a8bf4f241349018ea767ecb76a063dd7e38438

sev- sev at scummvm.org
Wed Mar 12 22:40:13 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:
17a8bf4f24 FULLPIPE: Fix warning


Commit: 17a8bf4f241349018ea767ecb76a063dd7e38438
    https://github.com/scummvm/scummvm/commit/17a8bf4f241349018ea767ecb76a063dd7e38438
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-03-12T23:39:01+02:00

Commit Message:
FULLPIPE: Fix warning

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



diff --git a/engines/fullpipe/scenes/scene18and19.cpp b/engines/fullpipe/scenes/scene18and19.cpp
index d17b5d1..30ae8aa 100644
--- a/engines/fullpipe/scenes/scene18and19.cpp
+++ b/engines/fullpipe/scenes/scene18and19.cpp
@@ -559,7 +559,7 @@ void sceneHandler18and19_drawRiders() {
 	if (g_vars->scene18_var21 >= 359)
 		g_vars->scene18_var21 = 0;
 
-	for (int i = 0; i < g_vars->scene18_var07.size(); i++) {
+	for (uint i = 0; i < g_vars->scene18_var07.size(); i++) {
 		Swinger *swinger = g_vars->scene18_var07[i];
 
 		double oldangle = swinger->angle;






More information about the Scummvm-git-logs mailing list