diff options
author | Eugene Sandulenko | 2013-11-09 13:18:54 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-11-09 13:18:54 +0200 |
commit | bcd65f854f98405c16f9749e1b2c23419772a237 (patch) | |
tree | 86338860b336b93fc30339b5c951dccb72eb7a42 /engines | |
parent | 4decd8c8083a6ff85c092d336d70b61bf8ec30bf (diff) | |
download | scummvm-rg350-bcd65f854f98405c16f9749e1b2c23419772a237.tar.gz scummvm-rg350-bcd65f854f98405c16f9749e1b2c23419772a237.tar.bz2 scummvm-rg350-bcd65f854f98405c16f9749e1b2c23419772a237.zip |
PARALLACTION: Initialize class. CID 1002721
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/gui_br.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/parallaction/gui_br.cpp b/engines/parallaction/gui_br.cpp index ddbc31d730..2ec5ba6e8d 100644 --- a/engines/parallaction/gui_br.cpp +++ b/engines/parallaction/gui_br.cpp @@ -196,6 +196,11 @@ class MainMenuInputState_BR : public MenuInputState { public: MainMenuInputState_BR(Parallaction_br *vm, MenuInputHelper *helper) : MenuInputState("mainmenu", helper), _vm(vm) { memset(_lines, 0, sizeof(_lines)); + + _menuStrings = 0; + _options = 0; + _availItems = 0; + _selection = 0; } ~MainMenuInputState_BR() { |