diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-07-12 00:06:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 00:06:59 +0200 |
commit | a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa (patch) | |
tree | 818b14e6e04d75a7f288eca6c66272a7fa0c4508 /src/entities/Entity.cpp | |
parent | Unite all sliders (diff) | |
parent | finish COMPATIBLE_SAVES and FIX_INCOMPATIBLE_SAVES (diff) | |
download | re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.gz re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.bz2 re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.lz re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.xz re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.zst re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.zip |
Diffstat (limited to '')
-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 |