diff options
author | Filippos Karapetis | 2011-01-27 20:42:19 +0000 |
---|---|---|
committer | Filippos Karapetis | 2011-01-27 20:42:19 +0000 |
commit | b25a5d18628ef4febe48da00b4036a420b708eb5 (patch) | |
tree | 31184e0a94086b24d617a457b332766249b08173 | |
parent | ecd2e0f3a04066abd0c4ca332c4d078f06d3b4b5 (diff) | |
download | scummvm-rg350-b25a5d18628ef4febe48da00b4036a420b708eb5.tar.gz scummvm-rg350-b25a5d18628ef4febe48da00b4036a420b708eb5.tar.bz2 scummvm-rg350-b25a5d18628ef4febe48da00b4036a420b708eb5.zip |
HUGO: Fixed crash when an incorrect hugo.dat file is found
svn-id: r55572
-rw-r--r-- | engines/hugo/text.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/hugo/text.cpp b/engines/hugo/text.cpp index 8ba70b7a45..ebb89ae4a8 100644 --- a/engines/hugo/text.cpp +++ b/engines/hugo/text.cpp @@ -30,7 +30,8 @@ namespace Hugo { TextHandler::TextHandler(HugoEngine *vm) : _vm(vm), _textData(0), _stringtData(0), - _textEngine(0), _textIntro(0), _textMouse(0), _textParser(0), _textUtil(0), _screenNames(0) { + _textEngine(0), _textIntro(0), _textMouse(0), _textParser(0), _textUtil(0), + _screenNames(0), _arrayNouns(0), _arrayVerbs(0) { } TextHandler::~TextHandler() { |