From bef72df32c6f5c9275b82b38b387e9295430814a Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Mon, 22 Jan 2024 21:06:33 +0100 Subject: chore: CI fixes --- src/pipeline/physics_pipeline.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/pipeline') diff --git a/src/pipeline/physics_pipeline.rs b/src/pipeline/physics_pipeline.rs index aa5ed23..5ff78fd 100644 --- a/src/pipeline/physics_pipeline.rs +++ b/src/pipeline/physics_pipeline.rs @@ -262,7 +262,7 @@ impl PhysicsPipeline { // Intra-island parallelism (that hasn’t been ported to the new // solver yet) will be supported in the future. self.counters.solver.velocity_resolution_time.resume(); - rayon::scope(|scope| { + rayon::scope(|_scope| { enable_flush_to_zero!(); solvers @@ -287,9 +287,9 @@ impl PhysicsPipeline { islands, bodies, &mut manifolds[..], - &self.manifold_indices[island_id], + &manifold_indices[island_id], impulse_joints, - &self.joint_constraint_indices[island_id], + &joint_constraint_indices[island_id], multibody_joints, ) }); -- cgit