aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parser_ns.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2008-07-25 16:08:10 +0000
committerNicola Mettifogo2008-07-25 16:08:10 +0000
commit1174296a664a7e796cf178297b4e65d6a56bb158 (patch)
tree056e2340c9d15350083c4841dc77708c76908608 /engines/parallaction/parser_ns.cpp
parent3e08d36363c1f761807ad012de4dd3f6aa3589b0 (diff)
downloadscummvm-rg350-1174296a664a7e796cf178297b4e65d6a56bb158.tar.gz
scummvm-rg350-1174296a664a7e796cf178297b4e65d6a56bb158.tar.bz2
scummvm-rg350-1174296a664a7e796cf178297b4e65d6a56bb158.zip
Changed the remaining references to Nodes into Points.
svn-id: r33290
Diffstat (limited to 'engines/parallaction/parser_ns.cpp')
-rw-r--r--engines/parallaction/parser_ns.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/parallaction/parser_ns.cpp b/engines/parallaction/parser_ns.cpp
index 3595fa5696..b06eccc81c 100644
--- a/engines/parallaction/parser_ns.cpp
+++ b/engines/parallaction/parser_ns.cpp
@@ -1011,7 +1011,7 @@ DECLARE_LOCATION_PARSER(disk) {
DECLARE_LOCATION_PARSER(nodes) {
debugC(7, kDebugParser, "LOCATION_PARSER(nodes) ");
- parseWalkNodes(_vm->_location._walkNodes);
+ parsePointList(_vm->_location._walkPoints);
}
@@ -1124,8 +1124,8 @@ void LocationParser_ns::parse(Script *script) {
resolveCommandForwards();
}
-void LocationParser_ns::parseWalkNodes(PointList &list) {
- debugC(5, kDebugParser, "parseWalkNodes()");
+void LocationParser_ns::parsePointList(PointList &list) {
+ debugC(5, kDebugParser, "parsePointList()");
_script->readLineToken(true);
while (scumm_stricmp(_tokens[0], "ENDNODES")) {
@@ -1137,7 +1137,7 @@ void LocationParser_ns::parseWalkNodes(PointList &list) {
_script->readLineToken(true);
}
- debugC(5, kDebugParser, "parseWalkNodes() done");
+ debugC(5, kDebugParser, "parsePointList() done");
return;
}