aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/intro.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lab/intro.cpp')
-rw-r--r--engines/lab/intro.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/lab/intro.cpp b/engines/lab/intro.cpp
index 070b03fd3c..7727ac1f93 100644
--- a/engines/lab/intro.cpp
+++ b/engines/lab/intro.cpp
@@ -53,8 +53,8 @@ void Intro::introEatMessages() {
if (msg == NULL)
return;
else {
- if (((msg->msgClass == MOUSEBUTTONS) && (IEQUALIFIER_RBUTTON & msg->qualifier)) ||
- ((msg->msgClass == RAWKEY) && (msg->code == 27))
+ if (((msg->_msgClass == MOUSEBUTTONS) && (IEQUALIFIER_RBUTTON & msg->_qualifier)) ||
+ ((msg->_msgClass == RAWKEY) && (msg->_code == 27))
)
_quitIntro = true;
}
@@ -151,9 +151,9 @@ void Intro::doPictText(const char *filename, TextFont *msgFont, bool isScreen) {
_vm->waitTOF();
} else {
- cls = msg->msgClass;
- qualifier = msg->qualifier;
- code = msg->code;
+ cls = msg->_msgClass;
+ qualifier = msg->_qualifier;
+ code = msg->_code;
if (((cls == MOUSEBUTTONS) && (IEQUALIFIER_RBUTTON & qualifier)) ||
((cls == RAWKEY) && (code == 27))) {