diff options
| author | withmorten <morten.with@gmail.com> | 2021-07-05 18:07:26 +0200 |
|---|---|---|
| committer | withmorten <morten.with@gmail.com> | 2021-07-10 17:30:27 +0200 |
| commit | 011aafa0435d2c60dc4e0769ed4c93ed1761e3f6 (patch) | |
| tree | 4f6c78844f547651730f82043b28662a9b7239e9 /src/entities/Entity.cpp | |
| parent | readme: fix lto option (diff) | |
| download | re3-011aafa0435d2c60dc4e0769ed4c93ed1761e3f6.tar.gz | |
finish COMPATIBLE_SAVES and FIX_INCOMPATIBLE_SAVES
Diffstat (limited to 'src/entities/Entity.cpp')
| -rw-r--r-- | src/entities/Entity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entities/Entity.cpp b/src/entities/Entity.cpp index a7f4bd45..c38f12c7 100644 --- a/src/entities/Entity.cpp +++ b/src/entities/Entity.cpp @@ -732,7 +732,7 @@ CEntity::SaveEntityFlags(uint8*& buf) if (bZoneCulled) tmp |= BIT(30); if (bZoneCulled2) tmp |= BIT(31); - WriteSaveBuf<uint32>(buf, tmp); + WriteSaveBuf(buf, tmp); tmp = 0; @@ -748,7 +748,7 @@ CEntity::SaveEntityFlags(uint8*& buf) if (bDistanceFade) tmp |= BIT(8); if (m_flagE2) tmp |= BIT(9); - WriteSaveBuf<uint32>(buf, tmp); + WriteSaveBuf(buf, tmp); } void |
