aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/commands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/commands.cpp b/engines/parallaction/commands.cpp
index 0fe79a255e..fada14c94e 100644
--- a/engines/parallaction/commands.cpp
+++ b/engines/parallaction/commands.cpp
@@ -174,7 +174,7 @@ Command *parseCommands(ArchivedFile *file) {
byte _al = _vm->searchTable(&_tokens[_si][2], const_cast<const char **>(_globalTable));
cmd->_flagsOff |= 1 << (_al - 1);
} else {
- byte _al = _vm->searchTable(_tokens[_si], const_cast<const char **>(_localFlagNames));
+ byte _al = _vm->searchTable(_tokens[_si], const_cast<const char **>(_globalTable));
cmd->_flagsOn |= 1 << (_al - 1);
}