[Scummvm-cvs-logs] scummvm master -> 2d41bae7321b671cf9a2b7cc8e3ea7c7d0fefd1d

Strangerke Strangerke at scummvm.org
Sun Apr 21 13:47:50 CEST 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:
2d41bae732 HUGO: Add missing initializations in intro constructors. CID 1002884 and 1002885


Commit: 2d41bae7321b671cf9a2b7cc8e3ea7c7d0fefd1d
    https://github.com/scummvm/scummvm/commit/2d41bae7321b671cf9a2b7cc8e3ea7c7d0fefd1d
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-04-21T04:46:10-07:00

Commit Message:
HUGO: Add missing initializations in intro constructors. CID 1002884 and 1002885

Changed paths:
    engines/hugo/intro.cpp



diff --git a/engines/hugo/intro.cpp b/engines/hugo/intro.cpp
index f2ae06e..505e356 100644
--- a/engines/hugo/intro.cpp
+++ b/engines/hugo/intro.cpp
@@ -41,6 +41,7 @@ namespace Hugo {
 
 IntroHandler::IntroHandler(HugoEngine *vm) : _vm(vm), _introX(0), _introY(0) {
 	_introXSize = 0;
+	_introTicks = 0;
 }
 
 IntroHandler::~IntroHandler() {
@@ -76,6 +77,7 @@ void IntroHandler::freeIntroData() {
 }
 
 intro_v1d::intro_v1d(HugoEngine *vm) : IntroHandler(vm) {
+	_introState = 0;
 }
 
 intro_v1d::~intro_v1d() {






More information about the Scummvm-git-logs mailing list