diff options
| author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-05-02 18:02:17 +0300 |
|---|---|---|
| committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-05-02 18:02:17 +0300 |
| commit | f372ce156d76350ef4705ecbf488b43484878ca2 (patch) | |
| tree | edf87ceceb886b0f8fa9e57a6b357d0f2d670aed /src/entities/Entity.h | |
| parent | Merge remote-tracking branch 'upstream/master' (diff) | |
| download | re3-f372ce156d76350ef4705ecbf488b43484878ca2.tar.gz | |
changed saving compatibility
Diffstat (limited to 'src/entities/Entity.h')
| -rw-r--r-- | src/entities/Entity.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/entities/Entity.h b/src/entities/Entity.h index 9a0cd5cb..dbe2c08b 100644 --- a/src/entities/Entity.h +++ b/src/entities/Entity.h @@ -98,7 +98,10 @@ public: eEntityStatus GetStatus() const { return (eEntityStatus)m_status; } void SetStatus(eEntityStatus status) { m_status = status; } CColModel *GetColModel(void) { return CModelInfo::GetModelInfo(m_modelIndex)->GetColModel(); } -#ifndef COMPATIBLE_SAVES +#ifdef COMPATIBLE_SAVES + void SaveEntityFlags(uint8*& buf); + void LoadEntityFlags(uint8*& buf); +#else uint32* GetAddressOfEntityProperties() { /* AWFUL */ return (uint32*)((char*)&m_rwObject + sizeof(m_rwObject)); } #endif |
