Michele Caini 2 лет назад
Родитель
Сommit
62f1971f7b
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      test/entt/entity/registry.cpp

+ 2 - 2
test/entt/entity/registry.cpp

@@ -73,11 +73,11 @@ struct destruction_order {
     destruction_order(const entt::registry &ref, bool &ctx)
         : registry{&ref},
           ctx_check{&ctx} {
-        *ctx_check = (registry->ctx().find<int>() != nullptr);
+        *ctx_check = (registry->ctx().find<ctx_check_type>() != nullptr);
     }
 
     ~destruction_order() {
-        *ctx_check = *ctx_check && (registry->ctx().find<int>() != nullptr);
+        *ctx_check = *ctx_check && (registry->ctx().find<ctx_check_type>() != nullptr);
     }
 
 private: