aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/intro.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2015-11-20 20:26:00 +0100
committerWillem Jan Palenstijn2015-12-23 21:33:41 +0100
commit158f623db8778ae8511bd94b7f5c6989230d4da5 (patch)
tree88866a124399a381222dcccab4f9ee63ae997319 /engines/lab/intro.cpp
parentfd8215454cdccfe7d03229fa5c6914444a002114 (diff)
downloadscummvm-rg350-158f623db8778ae8511bd94b7f5c6989230d4da5.tar.gz
scummvm-rg350-158f623db8778ae8511bd94b7f5c6989230d4da5.tar.bz2
scummvm-rg350-158f623db8778ae8511bd94b7f5c6989230d4da5.zip
LAB: Rename IntuiMessage struct members
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 c3a8321f67..eacfd12843 100644
--- a/engines/lab/intro.cpp
+++ b/engines/lab/intro.cpp
@@ -63,8 +63,8 @@ void Intro::introEatMessages() {
if (msg == NULL)
return;
else {
- if (((msg->Class == MOUSEBUTTONS) && (IEQUALIFIER_RBUTTON & msg->Qualifier)) ||
- ((msg->Class == RAWKEY) && (msg->Code == 27))
+ if (((msg->msgClass == MOUSEBUTTONS) && (IEQUALIFIER_RBUTTON & msg->qualifier)) ||
+ ((msg->msgClass == RAWKEY) && (msg->code == 27))
)
_quitIntro = true;
}
@@ -164,9 +164,9 @@ void Intro::doPictText(const char *filename, bool isscreen) {
waitTOF();
} else {
- cls = msg->Class;
- 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))) {