From 72770f23418db22edf846b585020e7b6f2c1774a Mon Sep 17 00:00:00 2001 From: Strangerke Date: Sun, 16 Mar 2014 12:06:24 +0100 Subject: [PATCH] VOYEUR: Fix some missing variable initializations --- engines/voyeur/voyeur.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/engines/voyeur/voyeur.cpp b/engines/voyeur/voyeur.cpp index 6f39be4b6d87..9843930bd357 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() {