[Scummvm-cvs-logs] scummvm master -> ed90a8861bde2505f682b5b227adf16563f23134

sev- sev at scummvm.org
Sun Mar 16 01:01:30 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:
ed90a8861b FULLPIPE: Fix compiler warning


Commit: ed90a8861bde2505f682b5b227adf16563f23134
    https://github.com/scummvm/scummvm/commit/ed90a8861bde2505f682b5b227adf16563f23134
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-03-16T02:00:35+02:00

Commit Message:
FULLPIPE: Fix compiler warning

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



diff --git a/engines/fullpipe/scenes/scene18and19.cpp b/engines/fullpipe/scenes/scene18and19.cpp
index f30045e..11d00a0 100644
--- a/engines/fullpipe/scenes/scene18and19.cpp
+++ b/engines/fullpipe/scenes/scene18and19.cpp
@@ -635,7 +635,7 @@ void sceneHandler18and19_drawRiders() {
 		if (!g_vars->scene18_enteredTrubaRight)
 			continue;
 
-		if (i == g_vars->scene18_var27) {
+		if ((int)i == g_vars->scene18_var27) {
 			if (swinger->angle >= ANGLE(170) && oldangle < ANGLE(170)) {
 				g_fp->_gameLoader->preloadScene(SC_18, TrubaRight);
 			} else if (swinger->angle >= ANGLE(25) && oldangle < ANGLE(25)) {






More information about the Scummvm-git-logs mailing list