aboutsummaryrefslogtreecommitdiff
path: root/engines/cryomni3d/objects.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cryomni3d/objects.h')
-rw-r--r--engines/cryomni3d/objects.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cryomni3d/objects.h b/engines/cryomni3d/objects.h
index 03e6a5d0ac..c34f30d6c3 100644
--- a/engines/cryomni3d/objects.h
+++ b/engines/cryomni3d/objects.h
@@ -83,10 +83,10 @@ public:
void clear();
void add(Object *);
void remove(unsigned int position);
- void removeByCursorId(unsigned int cursorId);
- void removeByNameId(unsigned int nameId);
- bool inInventoryByCursorId(unsigned int cursorId) const;
- bool inInventoryByNameId(unsigned int nameId) const;
+ void removeByNameID(unsigned int nameID);
+ void removeByIconID(unsigned int iconID);
+ bool inInventoryByNameID(unsigned int nameID) const;
+ bool inInventoryByIconID(unsigned int iconID) const;
Object *selectedObject() const { return _selectedObject; }
void setSelectedObject(Object *obj) { _selectedObject = obj; }