[Scummvm-cvs-logs] scummvm master -> 72770f23418db22edf846b585020e7b6f2c1774a

Strangerke Strangerke at scummvm.org
Sun Mar 16 12:08: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:
72770f2341 VOYEUR: Fix some missing variable initializations


Commit: 72770f23418db22edf846b585020e7b6f2c1774a
    https://github.com/scummvm/scummvm/commit/72770f23418db22edf846b585020e7b6f2c1774a
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-03-16T12:06:24+01:00

Commit Message:
VOYEUR: Fix some missing variable initializations

Changed paths:
    engines/voyeur/voyeur.cpp



diff --git a/engines/voyeur/voyeur.cpp b/engines/voyeur/voyeur.cpp
index 6f39be4..9843930 100644
--- a/engines/voyeur/voyeur.cpp
+++ b/engines/voyeur/voyeur.cpp
@@ -73,6 +73,15 @@ VoyeurEngine::VoyeurEngine(OSystem *syst, const VoyeurGameDescription *gameDesc)
 	_graphicsManager = new GraphicsManager(this);
 	_soundManager = new SoundManager(_mixer);
 	_voy = new SVoy(this);
+
+	_stampLibPtr = nullptr;
+	_controlGroupPtr = nullptr;
+	_stampData = nullptr;
+	_stackGroupPtr = nullptr;
+	_glGoState = -1;
+	_glGoStack = -1;
+	_resolvePtr = nullptr;
+	_mainThread = nullptr;
 }
 
 VoyeurEngine::~VoyeurEngine() {






More information about the Scummvm-git-logs mailing list