diff options
author | Eugene Sandulenko | 2010-08-18 14:12:09 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-08-18 14:12:09 +0000 |
commit | 3b81b301716bd2426eb455db254f085c94cc66ce (patch) | |
tree | 72f454ba5cb95bf6d0fdcb1eb0ec3c1a4b20e0a3 /engines/hugo | |
parent | 330d467b512e3e4064d7552a43766085afd4602b (diff) | |
download | scummvm-rg350-3b81b301716bd2426eb455db254f085c94cc66ce.tar.gz scummvm-rg350-3b81b301716bd2426eb455db254f085c94cc66ce.tar.bz2 scummvm-rg350-3b81b301716bd2426eb455db254f085c94cc66ce.zip |
HUGO: Fix intro crash in H3
svn-id: r52186
Diffstat (limited to 'engines/hugo')
-rw-r--r-- | engines/hugo/intro.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hugo/intro.cpp b/engines/hugo/intro.cpp index eac0339660..cd08d73b27 100644 --- a/engines/hugo/intro.cpp +++ b/engines/hugo/intro.cpp @@ -48,7 +48,7 @@ IntroHandler::IntroHandler(HugoEngine &vm) : _vm(vm) { IntroHandler::~IntroHandler() { } -intro_1w::intro_1w(HugoEngine &vm) : IntroHandler(_vm) { +intro_1w::intro_1w(HugoEngine &vm) : IntroHandler(vm) { } intro_1w::~intro_1w() { @@ -67,7 +67,7 @@ bool intro_1w::introPlay() { return true; } -intro_2w::intro_2w(HugoEngine &vm) : IntroHandler(_vm) { +intro_2w::intro_2w(HugoEngine &vm) : IntroHandler(vm) { } intro_2w::~intro_2w() { @@ -83,7 +83,7 @@ bool intro_2w::introPlay() { return true; } -intro_3w::intro_3w(HugoEngine &vm) : IntroHandler(_vm) { +intro_3w::intro_3w(HugoEngine &vm) : IntroHandler(vm) { } intro_3w::~intro_3w() { |