diff options
author | Eugene Sandulenko | 2013-10-17 14:11:07 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-10-17 14:11:07 +0300 |
commit | ae38d943ae7c032907ab96b60dbb88a04d1028d3 (patch) | |
tree | ba3b02f1173cf7d17d57e532fdc687b630512791 /engines | |
parent | ae17206ce76c66738d0ff09c4d85d689d009fb20 (diff) | |
download | scummvm-rg350-ae38d943ae7c032907ab96b60dbb88a04d1028d3.tar.gz scummvm-rg350-ae38d943ae7c032907ab96b60dbb88a04d1028d3.tar.bz2 scummvm-rg350-ae38d943ae7c032907ab96b60dbb88a04d1028d3.zip |
DRACI: Fix uninitalized variables. CID 1003406
Diffstat (limited to 'engines')
-rw-r--r-- | engines/draci/draci.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/engines/draci/draci.cpp b/engines/draci/draci.cpp index 6aa8477887..06730cfba7 100644 --- a/engines/draci/draci.cpp +++ b/engines/draci/draci.cpp @@ -92,6 +92,32 @@ DraciEngine::DraciEngine(OSystem *syst, const ADGameDescription *gameDesc) DebugMan.addDebugChannel(kDraciWalkingDebugLevel, "walking", "Walking debug info"); _console = new DraciConsole(this); + + _screen = 0; + _mouse = 0; + _game = 0; + _script = 0; + _anims = 0; + _sound = 0; + _music = 0; + _smallFont = 0; + _bigFont = 0; + _iconsArchive = 0; + _objectsArchive = 0; + _spritesArchive = 0; + _paletteArchive = 0; + _roomsArchive = 0; + _overlaysArchive = 0; + _animationsArchive = 0; + _walkingMapsArchive = 0; + _itemsArchive = 0; + _itemImagesArchive = 0; + _initArchive = 0; + _stringsArchive = 0; + _soundsArchive = 0; + _dubbingArchive = 0; + _showWalkingMap = 0; + _pauseStartTime = 0; } bool DraciEngine::hasFeature(EngineFeature f) const { |