aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/console.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lab/console.cpp')
-rw-r--r--engines/lab/console.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lab/console.cpp b/engines/lab/console.cpp
index 31b52da0ba..12eafd3789 100644
--- a/engines/lab/console.cpp
+++ b/engines/lab/console.cpp
@@ -86,7 +86,7 @@ bool Console::Cmd_DumpSceneResources(int argc, const char **argv) {
debugPrintf(" (from %s to %s)", directions[rule->_param1], directions[rule->_param2]);
debugPrintf("\n");
- Common::List<Action>::iterator action;
+ ActionList::iterator action;
for (action = rule->_actionList.begin(); action != rule->_actionList.end(); ++action) {
debugPrintf(" - %s ('%s', %d, %d, %d)\n", actionTypes[action->_actionType], action->_messages[0].c_str(), action->_param1, action->_param2, action->_param3);
}
@@ -110,7 +110,7 @@ bool Console::Cmd_FindAction(int argc, const char **argv) {
_vm->_resource->readViews(i);
for (RuleList::iterator rule = _vm->_rooms[i]._rules.begin(); rule != _vm->_rooms[i]._rules.end(); ++rule) {
- Common::List<Action>::iterator action;
+ ActionList::iterator action;
for (action = rule->_actionList.begin(); action != rule->_actionList.end(); ++action) {
if (action->_actionType == actionId &&
(action->_param1 == param1 || param1 == -1) &&