File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
crates/processing_render/src Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -320,7 +320,11 @@ pub fn init(config: Config) -> error::Result<()> {
320320 // also, we need to run the main schedule once to ensure all systems are initialized before we
321321 // return from init, to ensure any plugins that need to do setup in their first update can rely
322322 // on that
323+ <<<<<<< HEAD
323324 app.main_mut().run_default_schedule();
325+ =======
326+ app.update();
327+ >>>>>>> f100dbc (Run main schedule at least once to ensure Startup et al run.)
324328 set_app(app);
325329
326330 Ok(())
@@ -353,7 +357,11 @@ pub async fn init(config: Config) -> error::Result<()> {
353357
354358 app.finish();
355359 app.cleanup();
360+ <<<<<<< HEAD
356361 app.main_mut().run_default_schedule();
362+ =======
363+ app.update();
364+ >>>>>>> f100dbc (Run main schedule at least once to ensure Startup et al run.)
357365 set_app(app);
358366
359367 Ok(())
You can’t perform that action at this time.
0 commit comments