[Scummvm-cvs-logs] scummvm master -> 55b76f7d16be83fc3e6f2e2d4d0f53ab7eaae1bd

sev- sev at scummvm.org
Wed Feb 26 19:22:37 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:
55b76f7d16 FULLPIPE: Implement scene19_initScene2()


Commit: 55b76f7d16be83fc3e6f2e2d4d0f53ab7eaae1bd
    https://github.com/scummvm/scummvm/commit/55b76f7d16be83fc3e6f2e2d4d0f53ab7eaae1bd
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-02-26T10:21:56-08:00

Commit Message:
FULLPIPE: Implement scene19_initScene2()

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



diff --git a/engines/fullpipe/scenes.cpp b/engines/fullpipe/scenes.cpp
index 8e4b5c9..d64ea0b 100644
--- a/engines/fullpipe/scenes.cpp
+++ b/engines/fullpipe/scenes.cpp
@@ -272,6 +272,11 @@ Vars::Vars() {
 
 	scene18_var01 = 0;
 
+	scene19_var01 = 0;
+	scene19_var02 = 0;
+	scene19_var03 = 0;
+	scene19_var04 = 0;
+
 	scene20_fliesCountdown = 0;
 	scene20_grandma = 0;
 
diff --git a/engines/fullpipe/scenes.h b/engines/fullpipe/scenes.h
index 10485f2..f06e210 100644
--- a/engines/fullpipe/scenes.h
+++ b/engines/fullpipe/scenes.h
@@ -462,6 +462,11 @@ public:
 
 	int scene18_var01;
 
+	int scene19_var01;
+	int scene19_var02;
+	int scene19_var03;
+	int scene19_var04;
+
 	int scene20_fliesCountdown;
 	StaticANIObject *scene20_grandma;
 
diff --git a/engines/fullpipe/scenes/scene18and19.cpp b/engines/fullpipe/scenes/scene18and19.cpp
index 5f24aeb..b061d1d 100644
--- a/engines/fullpipe/scenes/scene18and19.cpp
+++ b/engines/fullpipe/scenes/scene18and19.cpp
@@ -44,6 +44,12 @@ void scene19_preload(Scene *sc, int key) {
 	warning("WARNING: scene19_preload()");
 }
 
-
+void scene19_initScene2() {
+	g_fp->_aniMan2 = 0;
+	g_vars->scene19_var01 = 200;
+	g_vars->scene19_var02 = 200;
+	g_vars->scene19_var03 = 300;
+	g_vars->scene19_var04 = 300;
+}
 
 } // End of namespace Fullpipe






More information about the Scummvm-git-logs mailing list