VOYEUR: Fix some missing variable initializations

This commit is contained in:
Strangerke 2014-03-16 12:06:24 +01:00
parent b5c086270d
commit 72770f2341

View File

@ -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() {