aboutsummaryrefslogtreecommitdiff
path: root/engines/cryomni3d/objects.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cryomni3d/objects.cpp')
-rw-r--r--engines/cryomni3d/objects.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/cryomni3d/objects.cpp b/engines/cryomni3d/objects.cpp
index 5963a1dd0e..1c06eb1ea1 100644
--- a/engines/cryomni3d/objects.cpp
+++ b/engines/cryomni3d/objects.cpp
@@ -66,9 +66,9 @@ void Inventory::remove(unsigned int position) {
(*_changeCallback)(-1u);
}
-void Inventory::removeByCursorId(unsigned int cursorId) {
+void Inventory::removeByIconID(unsigned int iconID) {
for (iterator it = begin(); it != end(); it++) {
- if ((*it) && (*it)->idCA() == cursorId) {
+ if ((*it) && (*it)->idCA() == iconID) {
remove(it - begin());
return;
}
@@ -76,9 +76,9 @@ void Inventory::removeByCursorId(unsigned int cursorId) {
// Don't bail out
}
-void Inventory::removeByNameId(unsigned int nameId) {
+void Inventory::removeByNameID(unsigned int nameID) {
for (iterator it = begin(); it != end(); it++) {
- if ((*it) && (*it)->idOBJ() == nameId) {
+ if ((*it) && (*it)->idOBJ() == nameID) {
remove(it - begin());
return;
}
@@ -86,18 +86,18 @@ void Inventory::removeByNameId(unsigned int nameId) {
// Don't bail out
}
-bool Inventory::inInventoryByCursorId(unsigned int cursorId) const {
+bool Inventory::inInventoryByIconID(unsigned int iconID) const {
for (const_iterator it = begin(); it != end(); it++) {
- if ((*it) && (*it)->idCA() == cursorId) {
+ if ((*it) && (*it)->idCA() == iconID) {
return true;
}
}
return false;
}
-bool Inventory::inInventoryByNameId(unsigned int nameId) const {
+bool Inventory::inInventoryByNameID(unsigned int nameID) const {
for (const_iterator it = begin(); it != end(); it++) {
- if ((*it) && (*it)->idOBJ() == nameId) {
+ if ((*it) && (*it)->idOBJ() == nameID) {
return true;
}
}