Change CEntity::SetActive argument to uchar

Former-commit-id: c6d3f0ae8b
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-17 18:59:36 +03:00
parent 8bb6d3442b
commit c7f154e26a
148 changed files with 164 additions and 173 deletions

View File

@@ -56,6 +56,6 @@ void CEntity::PreThink(float dt, CStateManager& mgr) {}
void CEntity::Think(float dt, CStateManager& mgr) {}
void CEntity::SetActive(bool active) { x30_24_active = active; }
void CEntity::SetActive(uchar active) { x30_24_active = active; }
TAreaId CEntity::GetAreaId() const { return x30_27_notInArea ? kInvalidAreaId : x4_areaId; }