diff options
author | Eugene Sandulenko | 2013-11-09 12:51:39 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-11-09 12:51:39 +0200 |
commit | fe678370770d3aeadbd8250e97d497898a8e8857 (patch) | |
tree | 2ad0fae5705f745c11c0db2616185c97199dba9b /engines/drascula | |
parent | 6491ad1cf93a3fe75a759536c68ac590e56e00a3 (diff) | |
download | scummvm-rg350-fe678370770d3aeadbd8250e97d497898a8e8857.tar.gz scummvm-rg350-fe678370770d3aeadbd8250e97d497898a8e8857.tar.bz2 scummvm-rg350-fe678370770d3aeadbd8250e97d497898a8e8857.zip |
DRASCULA: More variables initialized. CID 1003403
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/drascula.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index 159ceb9bf0..163f0077fc 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -176,6 +176,20 @@ DrasculaEngine::DrasculaEngine(OSystem *syst, const DrasculaGameDescription *gam _rightMouseButton = 0; *textName = 0; + crosshairCursor = 0; + mouseCursor = 0; + bgSurface = 0; + backSurface = 0; + cursorSurface = 0; + drawSurface3 = 0; + drawSurface2 = 0; + tableSurface = 0; + extraSurface = 0; + screenSurface = 0; + frontSurface = 0; + previousMusic = 0; + roomMusic = 0; + _rnd = new Common::RandomSource("drascula"); _console = 0; |