aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2013-10-17 13:51:30 +0300
committerEugene Sandulenko2013-10-17 13:51:30 +0300
commit955b585bd0fc2238ffbd6dac1edf1b3c5cc21ef8 (patch)
treef532ea7c5c43240cbd234270576ff1b417305b88 /engines
parent985491193258b3981db6a1879291e24ef4e3ed98 (diff)
downloadscummvm-rg350-955b585bd0fc2238ffbd6dac1edf1b3c5cc21ef8.tar.gz
scummvm-rg350-955b585bd0fc2238ffbd6dac1edf1b3c5cc21ef8.tar.bz2
scummvm-rg350-955b585bd0fc2238ffbd6dac1edf1b3c5cc21ef8.zip
DRASCULA: Fix uninitalized class variables. CID 1003403
Diffstat (limited to 'engines')
-rw-r--r--engines/drascula/drascula.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp
index d7e80acf12..369e28c9e1 100644
--- a/engines/drascula/drascula.cpp
+++ b/engines/drascula/drascula.cpp
@@ -89,6 +89,33 @@ DrasculaEngine::DrasculaEngine(OSystem *syst, const DrasculaGameDescription *gam
_talkSequences = 0;
_currentSaveSlot = 0;
+ bjX = 0;
+ bjY = 0;
+ trackBJ = 0;
+ framesWithoutAction = 0;
+ term_int = 0;
+ currentChapter = 0;
+ _loadedDifferentChapter = 0;
+ musicStopped = 0;
+ FrameSSN = 0;
+ globalSpeed = 0;
+ LastFrame = 0;
+ flag_tv = 0;
+ _charMapSize = 0;
+ _itemLocationsSize = 0;
+ _polXSize = 0;
+ _verbBarXSize = 0;
+ _x1dMenuSize = 0;
+ _frameXSize = 0;
+ _candleXSize = 0;
+ _pianistXSize = 0;
+ _drunkXSize = 0;
+ _roomPreUpdatesSize = 0;
+ _roomUpdatesSize = 0;
+ _roomActionsSize = 0;
+ _talkSequencesSize = 0;
+ _numLangs = 0;
+
_color = 0;
blinking = 0;
_mouseX = 0;