Преглед изворни кода

snapshot: avoid unnecessary lookups

Michele Caini пре 3 година
родитељ
комит
5d092bcb18
1 измењених фајлова са 1 додато и 1 уклоњено
  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)));
             }
         }