diff options
author | Frank Stein <dr.frank.stain@gmail.com> | 2016-03-16 21:08:41 +0200 |
---|---|---|
committer | Frank Stein <dr.frank.stain@gmail.com> | 2016-03-16 21:08:41 +0200 |
commit | 7003e6bb71f17797995ba024e62cc16ac15bc412 (patch) | |
tree | 51c988e5e332217bb94b79a3231345b219720eff | |
parent | 9e8c679a61fac8d6d103ef6eb5587b9bcbde9d8d (diff) |
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)) |