Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Oct 21, 2023
1 parent a25e281 commit eaa0d9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_winit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -732,10 +732,10 @@ pub fn winit_runner(mut app: App) {
let (mut event_writers, _, _) = event_writer_system_state.get_mut(&mut app.world);
match runner_state.active {
ActiveState::NotYetStarted => {
event_writers.lifetime.send(ApplicationLifetime::Started)
event_writers.lifetime.send(ApplicationLifetime::Started);
}
ActiveState::Suspended => {
event_writers.lifetime.send(ApplicationLifetime::Resumed)
event_writers.lifetime.send(ApplicationLifetime::Resumed);
}
_ => unreachable!(),
}
Expand Down

0 comments on commit eaa0d9a

Please sign in to comment.