aboutsummaryrefslogtreecommitdiff
path: root/engines/queen/command.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2011-05-25 09:56:31 -0400
committerMatthew Hoops2011-05-25 10:50:46 -0400
commit1277975c6685d13a05a2e77dc5f5604f3a4620bf (patch)
treee17dae335c9250c0637a9655b9e0913e805d5636 /engines/queen/command.cpp
parent8615cecfe07ee4d76d9620dd96d11c8ce4df5011 (diff)
downloadscummvm-rg350-1277975c6685d13a05a2e77dc5f5604f3a4620bf.tar.gz
scummvm-rg350-1277975c6685d13a05a2e77dc5f5604f3a4620bf.tar.bz2
scummvm-rg350-1277975c6685d13a05a2e77dc5f5604f3a4620bf.zip
ALL: neighbour -> neighbor
Diffstat (limited to 'engines/queen/command.cpp')
-rw-r--r--engines/queen/command.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/queen/command.cpp b/engines/queen/command.cpp
index 4f86d1f7ec..7876dbfae9 100644
--- a/engines/queen/command.cpp
+++ b/engines/queen/command.cpp
@@ -1081,10 +1081,10 @@ void Command::setAreas(uint16 command) {
Area *area = _vm->grid()->area(cmdArea->room, areaNum);
if (cmdArea->area > 0) {
// turn on area
- area->mapNeighbours = ABS(area->mapNeighbours);
+ area->mapNeighbors = ABS(area->mapNeighbors);
} else {
// turn off area
- area->mapNeighbours = -ABS(area->mapNeighbours);
+ area->mapNeighbors = -ABS(area->mapNeighbors);
}
}
}