Skip to content

Commit 4f088d1

Browse files
committed
;
1 parent a9fc3c6 commit 4f088d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/time/stepped_simulation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fn setup(mut commands: Commands, mut time: ResMut<Time<SteppedVirtual, u32>>) {
7878
Task,
7979
TextLayout::new_with_justify(Justify::Center),
8080
));
81-
})
81+
});
8282
});
8383

8484
// info UI
@@ -164,7 +164,7 @@ fn apply_cost(
164164
} else {
165165
time.recede_by(tasks_cost.0[*last_task]);
166166
}
167-
*last_task = current_task.0
167+
*last_task = current_task.0;
168168
}
169169

170170
fn manual_progress<const DELTA: i8>(mut current_task: ResMut<CurrentTask>) {

0 commit comments

Comments
 (0)