diff options
author | Eugene Sandulenko | 2013-10-18 16:01:10 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-10-18 16:01:10 +0300 |
commit | 6ff57db90f5ec7e9b437da161328dee74cbe9dae (patch) | |
tree | 11418774d7188b420ae2e22c3d2a4aee17a99da2 /engines/drascula | |
parent | 2a6a23e88a8785a7f5f8fda5dc00ab0c71ee9bdc (diff) | |
download | scummvm-rg350-6ff57db90f5ec7e9b437da161328dee74cbe9dae.tar.gz scummvm-rg350-6ff57db90f5ec7e9b437da161328dee74cbe9dae.tar.bz2 scummvm-rg350-6ff57db90f5ec7e9b437da161328dee74cbe9dae.zip |
DRASCULA: Initialize class variables. CID 1003403
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/drascula.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index d25b37d18d..9699dda021 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -115,6 +115,32 @@ DrasculaEngine::DrasculaEngine(OSystem *syst, const DrasculaGameDescription *gam _roomActionsSize = 0; _talkSequencesSize = 0; _numLangs = 0; + feetHeight = 0; + floorX1 = 0; + floorY1 = 0; + floorX2 = 0; + floorY2 = 0; + lowerLimit = 0; + upperLimit = 0; + trackFinal = 0; + walkToObject = 0; + objExit = 0; + _startTime = 0; + hasAnswer = 0; + savedTime = 0; + breakOut = 0; + vonBraunX = 0; + trackVonBraun = 0; + vonBraunHasMoved = 0; + newHeight = 0; + newWidth = 0; + color_solo = 0; + igorX = 0; + igorY = 0; + trackIgor = 0; + drasculaX = 0; + drasculaY = 0; + trackDrascula = 0; _color = 0; blinking = 0; |