aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pegasus/util.cpp')
-rwxr-xr-xengines/pegasus/util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/pegasus/util.cpp b/engines/pegasus/util.cpp
index f0d80f5827..c38054d051 100755
--- a/engines/pegasus/util.cpp
+++ b/engines/pegasus/util.cpp
@@ -31,14 +31,14 @@
namespace Pegasus {
-IDObject::IDObject(const tMM32BitID id) {
+IDObject::IDObject(const int32 id) {
_objectID = id;
}
IDObject::~IDObject() {
}
-tMM32BitID IDObject::getObjectID() const {
+int32 IDObject::getObjectID() const {
return _objectID;
}