aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/words.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2016-01-31 17:56:53 +0100
committerMartin Kiewitz2016-01-31 17:56:53 +0100
commit4bc01ab7d585f6be9d25a96ce9544b95f459d7e6 (patch)
tree61ec416cb1bb767838a3516825a209018ec12619 /engines/agi/words.cpp
parent82b958f274affa9d67de0ac2f8cfaa1756405dfb (diff)
downloadscummvm-rg350-4bc01ab7d585f6be9d25a96ce9544b95f459d7e6.tar.gz
scummvm-rg350-4bc01ab7d585f6be9d25a96ce9544b95f459d7e6.tar.bz2
scummvm-rg350-4bc01ab7d585f6be9d25a96ce9544b95f459d7e6.zip
AGI: getflag/setflag/etc. cleanup
renamed getflag() to getFlag() renamed setflag() to setFlag() renamed flipflag() to flipFlag() preagi: renamed setFlag for this engine to setWinnieFlag
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() {