diff --git a/strafe-client/src/window.rs b/strafe-client/src/window.rs index c1b5a96..6af6911 100644 --- a/strafe-client/src/window.rs +++ b/strafe-client/src/window.rs @@ -32,7 +32,7 @@ impl WindowContext<'_>{ match crate::file::load(path.as_path()){ Ok(Format2::Map(map))=>self.physics_thread.send(TimedInstruction{time,instruction:PhysicsWorkerInstruction::ChangeMap(map)}).unwrap(), Ok(Format2::Bot(bot))=>self.physics_thread.send(TimedInstruction{time,instruction:PhysicsWorkerInstruction::LoadReplay(bot)}).unwrap(), - Err(e)=>println!("Failed to load map: {e}"), + Err(e)=>println!("Failed to load file: {e}"), } }, winit::event::WindowEvent::Focused(state)=>{