Skip to content

Commit

Permalink
fix: rustfmt failed CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dror-g committed Feb 19, 2024
1 parent 49bef25 commit 27364bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ impl<S: VirtualJoystickID> Plugin for VirtualJoystickPlugin<S> {
joystick_image_node_system::<S>.before(UiSystem::Layout),
);

let Ok(render_app) = app.get_sub_app_mut(RenderApp) else { return; };
let Ok(render_app) = app.get_sub_app_mut(RenderApp) else {
return;
};
render_app.add_systems(
ExtractSchedule,
extract_joystick_node::<S>.after(RenderUiSystem::ExtractNode),
Expand Down

0 comments on commit 27364bd

Please sign in to comment.