Fixes Registry.removeAll iteration
This commit is contained in:
parent
6477d18a1a
commit
6e412489a2
@ -343,7 +343,8 @@ pub const Registry = struct {
|
||||
pub fn removeAll(self: *Registry, entity: Entity) void {
|
||||
assert(self.valid(entity));
|
||||
|
||||
for (self.components.items()) |ptr| {
|
||||
var iter = self.components.iterator();
|
||||
for (iter.next()) |ptr| {
|
||||
// HACK: we dont know the Type here but we need to be able to call methods on the Storage(T)
|
||||
var store = @intToPtr(*Storage(u1), ptr.value);
|
||||
store.removeIfContains(entity);
|
||||
|
Loading…
x
Reference in New Issue
Block a user