diff options
author | Alec Thomas <alec@swapoff.org> | 2016-03-17 08:34:48 +1100 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2016-03-17 08:34:48 +1100 |
commit | ceeddb88ba08e8a94f160246bb8562715a3203a5 (patch) | |
tree | 51c988e5e332217bb94b79a3231345b219720eff | |
parent | 9e8c679a61fac8d6d103ef6eb5587b9bcbde9d8d (diff) | |
parent | 7003e6bb71f17797995ba024e62cc16ac15bc412 (diff) |
Merge pull request #137 from FrankStain/master
Removing of copy-paste issue.
-rw-r--r-- | entityx/Entity.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/entityx/Entity.h b/entityx/Entity.h index 06854e3..b55a45f 100644 --- a/entityx/Entity.h +++ b/entityx/Entity.h @@ -573,7 +573,7 @@ class EntityManager : entityx::help::NonCopyable { void destroy(Entity::Id entity) { assert_valid(entity); uint32_t index = entity.index(); - auto mask = entity_component_mask_[entity.index()]; + auto mask = entity_component_mask_[index]; for (size_t i = 0; i < component_helpers_.size(); i++) { BaseComponentHelper *helper = component_helpers_[i]; if (helper && mask.test(i)) |