diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-07-12 01:07:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 01:07:32 +0300 |
commit | 02e84b4b978b2d17ae9a52ae95b2617902c94150 (patch) | |
tree | 6721fa10727d0fb7221e0c7131a78c56b5a47df2 /src/entities | |
parent | dc29e7c0441af00393364025ba57330292743544 (diff) | |
parent | 6f103a3b8246ed4a883abaea63c6682cdefc6752 (diff) |
Merge pull request #1150 from withmorten/miami-saves
miami: finish COMPATIBLE_SAVES and FIX_INCOMPATIBLE_SAVES
Diffstat (limited to 'src/entities')
-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 8d51cae7..b2fcfbc7 100644 --- a/src/entities/Entity.cpp +++ b/src/entities/Entity.cpp @@ -824,7 +824,7 @@ CEntity::SaveEntityFlags(uint8*& buf) if (bStreamingDontDelete) tmp |= BIT(30); if (bRemoveFromWorld) tmp |= BIT(31); - WriteSaveBuf<uint32>(buf, tmp); + WriteSaveBuf(buf, tmp); tmp = 0; @@ -845,7 +845,7 @@ CEntity::SaveEntityFlags(uint8*& buf) if (bUnderwater) tmp |= BIT(13); if (bHasPreRenderEffects) tmp |= BIT(14); - WriteSaveBuf<uint32>(buf, tmp); + WriteSaveBuf(buf, tmp); } void |