From f52e85a3d446706007d3603ad043febd62a59e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Mockers?= Date: Mon, 18 Oct 2021 18:33:56 +0200 Subject: [PATCH] and another --- crates/bevy_app/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_app/src/app.rs b/crates/bevy_app/src/app.rs index 14655aafe10e88..b57dd7ee0660b7 100644 --- a/crates/bevy_app/src/app.rs +++ b/crates/bevy_app/src/app.rs @@ -627,7 +627,7 @@ impl App { .remove(&std::any::TypeId::of::()); self.world .remove_resource::>() - .map(|startup| startup.0) + .map(|initialization| initialization.0) } /// Check that all initialization resources have been consumed, panicking otherwise.