aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/words.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/agi/words.cpp')
-rw-r--r--engines/agi/words.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/agi/words.cpp b/engines/agi/words.cpp
index 3c248e9874..0b8a4f3809 100644
--- a/engines/agi/words.cpp
+++ b/engines/agi/words.cpp
@@ -354,11 +354,11 @@ void Words::parseUsingDictionary(char *rawUserInput) {
debugC(4, kDebugLevelScripts, "ego word count = %d", _egoWordCount);
if (_egoWordCount > 0) {
- _vm->setflag(VM_FLAG_ENTERED_CLI, true);
+ _vm->setFlag(VM_FLAG_ENTERED_CLI, true);
} else {
- _vm->setflag(VM_FLAG_ENTERED_CLI, false);
+ _vm->setFlag(VM_FLAG_ENTERED_CLI, false);
}
- _vm->setflag(VM_FLAG_SAID_ACCEPTED_INPUT, false);
+ _vm->setFlag(VM_FLAG_SAID_ACCEPTED_INPUT, false);
}
uint16 Words::getEgoWordCount() {