diff options
author | Eugene Sandulenko | 2013-11-09 13:09:30 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-11-09 13:09:30 +0200 |
commit | 918ae371a0dd5c09c5e64f31c8663b0caf8f699b (patch) | |
tree | 3472f73b69b261041961c85e0448797499fc4314 /engines/parallaction | |
parent | c7331eea02c1aee47240847bb59cd1397d843ae6 (diff) | |
download | scummvm-rg350-918ae371a0dd5c09c5e64f31c8663b0caf8f699b.tar.gz scummvm-rg350-918ae371a0dd5c09c5e64f31c8663b0caf8f699b.tar.bz2 scummvm-rg350-918ae371a0dd5c09c5e64f31c8663b0caf8f699b.zip |
PARALLACTION: Initialize class. CID 1002705
Diffstat (limited to 'engines/parallaction')
-rw-r--r-- | engines/parallaction/parallaction_ns.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/parallaction/parallaction_ns.cpp b/engines/parallaction/parallaction_ns.cpp index 49b63dcac3..91e8c78fc2 100644 --- a/engines/parallaction/parallaction_ns.cpp +++ b/engines/parallaction/parallaction_ns.cpp @@ -145,6 +145,18 @@ void LocationName::bind(const char *s) { Parallaction_ns::Parallaction_ns(OSystem* syst, const PARALLACTIONGameDescription *gameDesc) : Parallaction(syst, gameDesc), _locationParser(0), _programParser(0), _walker(0) { + _soundManI = 0; + _score = 0; + _inTestResult = 0; + _callables = 0; + num_foglie = 0; + _sarcophagusDeltaX = 0; + _movingSarcophagus = 0; + _freeSarcophagusSlotX = 0; + _intro = 0; + + _testResultLabels[0] = 0; + _testResultLabels[1] = 0; } Common::Error Parallaction_ns::init() { |