diff options
author | Strangerke | 2014-03-16 12:06:24 +0100 |
---|---|---|
committer | Strangerke | 2014-03-16 12:06:24 +0100 |
commit | 72770f23418db22edf846b585020e7b6f2c1774a (patch) | |
tree | 192ea56847d6e9becbd264dca5c21b2068d9c586 /engines/voyeur | |
parent | b5c086270d7ab1cf02d3c404d5ae9818a172fad9 (diff) | |
download | scummvm-rg350-72770f23418db22edf846b585020e7b6f2c1774a.tar.gz scummvm-rg350-72770f23418db22edf846b585020e7b6f2c1774a.tar.bz2 scummvm-rg350-72770f23418db22edf846b585020e7b6f2c1774a.zip |
VOYEUR: Fix some missing variable initializations
Diffstat (limited to 'engines/voyeur')
-rw-r--r-- | engines/voyeur/voyeur.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/voyeur/voyeur.cpp b/engines/voyeur/voyeur.cpp index 6f39be4b6d..9843930bd3 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() { |