aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2013-11-09 13:12:06 +0200
committerEugene Sandulenko2013-11-09 13:12:06 +0200
commitd74585b344e88962d722ada471ae51532d800749 (patch)
tree2c6f17be6d14b9e5a9db374dff763b820ea44630 /engines
parent918ae371a0dd5c09c5e64f31c8663b0caf8f699b (diff)
downloadscummvm-rg350-d74585b344e88962d722ada471ae51532d800749.tar.gz
scummvm-rg350-d74585b344e88962d722ada471ae51532d800749.tar.bz2
scummvm-rg350-d74585b344e88962d722ada471ae51532d800749.zip
PARALLACTION: Initialize class. CID 1002706
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/parallaction_br.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/parallaction/parallaction_br.cpp b/engines/parallaction/parallaction_br.cpp
index f9df9d85db..586e4bbd6a 100644
--- a/engines/parallaction/parallaction_br.cpp
+++ b/engines/parallaction/parallaction_br.cpp
@@ -45,6 +45,18 @@ const char *Parallaction_br::_partNames[] = {
Parallaction_br::Parallaction_br(OSystem* syst, const PARALLACTIONGameDescription *gameDesc) : Parallaction(syst, gameDesc),
_locationParser(0), _programParser(0), _soundManI(0) {
+ _audioCommandsNamesRes = 0;
+ _part = 0;
+ _nextPart = 0;
+ _subtitleY = 0;
+ _subtitle[0] = 0;
+ _subtitle[1] = 0;
+ _charInventories[0] = 0;
+ _charInventories[1] = 0;
+ _charInventories[2] = 0;
+ _countersNames = 0;
+ _callables = 0;
+ _walker = 0;
}
Common::Error Parallaction_br::init() {