Skip to content

Commit

Permalink
VOYEUR: Fix some missing variable initializations
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Mar 16, 2014
1 parent b5c0862 commit 72770f2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions engines/voyeur/voyeur.cpp
Expand Up @@ -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() {
Expand Down

0 comments on commit 72770f2

Please sign in to comment.