diff options
| -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() {  | 
