From 4f21985290e589b0616ba3c1a855fd4e91196968 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Mon, 6 Jan 2025 00:36:14 -0800 Subject: [PATCH] fix print grammar --- strafe-client/src/physics_worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strafe-client/src/physics_worker.rs b/strafe-client/src/physics_worker.rs index 7744ffa..8f31f83 100644 --- a/strafe-client/src/physics_worker.rs +++ b/strafe-client/src/physics_worker.rs @@ -126,7 +126,7 @@ impl MouseInterpolator{ Instruction::Render=>self.push(ins.time,PhysicsInputInstruction::Idle), &Instruction::SetPaused(paused)=>{ if let Err(e)=self.timer.set_paused(ins.time,paused){ - println!("Cannot pause: {e}"); + println!("Cannot SetPaused: {e}"); } self.push(ins.time,PhysicsInputInstruction::Idle); },