Skip to content

Commit

Permalink
Fix rebase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
james-j-obrien committed Sep 12, 2023
1 parent 25623dc commit c16e0ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_ecs/src/storage/sparse_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ impl ComponentSparseSet {
// SAFETY: if the sparse index points to something in the dense vec, it exists
unsafe {
Some(TickCells {
added: self.dense.get_added_ticks_unchecked(row),
changed: self.dense.get_changed_ticks_unchecked(row),
added: self.dense.get_added_tick_unchecked(row),
changed: self.dense.get_changed_tick_unchecked(row),
})
}
}
Expand Down

0 comments on commit c16e0ec

Please sign in to comment.