diff options
author | aap <aap@papnet.eu> | 2020-12-03 16:04:59 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-12-03 16:04:59 +0100 |
commit | 13cefd329390c119126af6dcf0558ceb7c720e59 (patch) | |
tree | fa6f5344fe2e0f590d135515e40a5e673fcbf39a /src/modelinfo/BaseModelInfo.h | |
parent | little fixes for animviewer (diff) | |
download | re3-13cefd329390c119126af6dcf0558ceb7c720e59.tar re3-13cefd329390c119126af6dcf0558ceb7c720e59.tar.gz re3-13cefd329390c119126af6dcf0558ceb7c720e59.tar.bz2 re3-13cefd329390c119126af6dcf0558ceb7c720e59.tar.lz re3-13cefd329390c119126af6dcf0558ceb7c720e59.tar.xz re3-13cefd329390c119126af6dcf0558ceb7c720e59.tar.zst re3-13cefd329390c119126af6dcf0558ceb7c720e59.zip |
Diffstat (limited to '')
-rw-r--r-- | src/modelinfo/BaseModelInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modelinfo/BaseModelInfo.h b/src/modelinfo/BaseModelInfo.h index 2505967b..4c274aaf 100644 --- a/src/modelinfo/BaseModelInfo.h +++ b/src/modelinfo/BaseModelInfo.h @@ -63,9 +63,9 @@ public: bool DoesOwnColModel(void) { return m_bOwnsColModel; } void DeleteCollisionModel(void); void ClearTexDictionary(void) { m_txdSlot = -1; } - short GetObjectID(void) { return m_objectId; } + int16 GetObjectID(void) { return m_objectId; } void SetObjectID(int16 id) { m_objectId = id; } - short GetTxdSlot(void) { return m_txdSlot; } + int16 GetTxdSlot(void) { return m_txdSlot; } void AddRef(void); void RemoveRef(void); void SetTexDictionary(const char *name); |