Skip to content

Commit

Permalink
Fix formatting of delta_v debug field
Browse files Browse the repository at this point in the history
  • Loading branch information
kpreid committed Oct 26, 2023
1 parent f4264c9 commit 933496d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion all-is-cubes/src/physics/body.rs
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ impl Fmt<ConciseDebug> for BodyStepInfo {
.field("already_colliding", &self.already_colliding)
.field("push_out", &self.push_out.as_ref().map(|v| v.refmt(fopt)))
.field("move_segments", &self.move_segments.refmt(fopt))
.field("delta_v", &self.delta_v)
.field("delta_v", &self.delta_v.refmt(fopt))
.finish()
}
}
Expand Down

0 comments on commit 933496d

Please sign in to comment.