Update Registry.removeAll to 0.8.0 HashMap API

This commit is contained in:
LeRoyce Pearson 2021-06-16 00:56:01 -06:00
parent 6df575ee04
commit 514a893918

View File

@ -343,10 +343,10 @@ pub const Registry = struct {
pub fn removeAll(self: *Registry, entity: Entity) void {
assert(self.valid(entity));
var iter = self.components.iterator();
while (iter.next()) |ptr| {
var iter = self.components.valueIterator();
while (iter.next()) |value| {
// 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);
var store = @intToPtr(*Storage(u1), value.*);
store.removeIfContains(entity);
}
}