Explorar o código

snapshot: avoid unnecessary lookups

Michele Caini %!s(int64=3) %!d(string=hai) anos
pai
achega
5d092bcb18
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/entt/entity/snapshot.hpp

+ 1 - 1
src/entt/entity/snapshot.hpp

@@ -37,7 +37,7 @@ class basic_snapshot {
         archive(static_cast<typename traits_type::entity_type>(sz));
 
         for(auto it = first; it != last; ++it) {
-            if(reg->template all_of<Component>(*it)) {
+            if(view.contains(*it)) {
                 std::apply(archive, std::tuple_cat(std::make_tuple(*it), view.get(*it)));
             }
         }