[Scummvm-cvs-logs] scummvm master -> 74583e2301a7395a37ab711f8d3c5d01a66d5dad

sev- sev at scummvm.org
Tue Feb 18 19:53:53 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:
74583e2301 FULLPIPE: Fix compilation


Commit: 74583e2301a7395a37ab711f8d3c5d01a66d5dad
    https://github.com/scummvm/scummvm/commit/74583e2301a7395a37ab711f8d3c5d01a66d5dad
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-02-18T10:57:27-08:00

Commit Message:
FULLPIPE: Fix compilation

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



diff --git a/engines/fullpipe/scenes/scene09.cpp b/engines/fullpipe/scenes/scene09.cpp
index 3762a43..0679a0c 100644
--- a/engines/fullpipe/scenes/scene09.cpp
+++ b/engines/fullpipe/scenes/scene09.cpp
@@ -333,20 +333,20 @@ void sceneHandler09_cycleHangers() {
 
 void sceneHandler09_limitHangerPhase() {
 	for (int i = 0; i < g_vars->scene09_numMovingHangers; i++) {
-		if (i != g_vars_scene09_var10) {
-			g_vars_scene09_hangers[i]->phase += g_vars_scene09_hangers[i]->field_8;
+		if (i != g_vars->scene09_var10) {
+			g_vars->scene09_hangers[i]->phase += g_vars->scene09_hangers[i]->field_8;
 
-			if (g_vars_scene09_hangers[i]->phase > 85)
-				g_vars_scene09_hangers[i]->phase = 85;
+			if (g_vars->scene09_hangers[i]->phase > 85)
+				g_vars->scene09_hangers[i]->phase = 85;
 
-			if (g_vars_scene09_hangers[i]->phase < -85)
-				g_vars_scene09_hangers[i]->phase = -85;
+			if (g_vars->scene09_hangers[i]->phase < -85)
+				g_vars->scene09_hangers[i]->phase = -85;
 
-			if (g_vars_scene09_hangers[i]->phase < 0)
-				g_vars_scene09_hangers[i]->field_8++;
+			if (g_vars->scene09_hangers[i]->phase < 0)
+				g_vars->scene09_hangers[i]->field_8++;
 
-			if (g_vars_scene09_hangers[i]->phase > 0)
-				g_vars_scene09_hangers[i]->field_8--;
+			if (g_vars->scene09_hangers[i]->phase > 0)
+				g_vars->scene09_hangers[i]->field_8--;
 		}
     }
 }






More information about the Scummvm-git-logs mailing list