We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66a90d7 commit 41dc258Copy full SHA for 41dc258
crates/processing_render/src/lib.rs
@@ -320,7 +320,7 @@ pub fn init(config: Config) -> error::Result<()> {
320
// also, we need to run the main schedule once to ensure all systems are initialized before we
321
// return from init, to ensure any plugins that need to do setup in their first update can rely
322
// on that
323
- app.main_mut().run_default_schedule();
+ app.update();
324
set_app(app);
325
326
Ok(())
@@ -353,7 +353,7 @@ pub async fn init(config: Config) -> error::Result<()> {
353
354
app.finish();
355
app.cleanup();
356
357
358
359
0 commit comments