X-Git-Url: https://codewiz.org/gitweb?p=mandelwow.git;a=blobdiff_plain;f=support%2Fcamera.rs;fp=support%2Fcamera.rs;h=25b1e7292b9fb54b92c0bcdb775e052e9f437074;hp=db6c55ac6b103723999c7efd959ed1650cd91ce3;hb=fb92205ecfb5397f4cb3d47baee5da1f063ec892;hpb=20c701434df0fea9118120e87aae12f914cc47d5 diff --git a/support/camera.rs b/support/camera.rs index db6c55a..25b1e72 100644 --- a/support/camera.rs +++ b/support/camera.rs @@ -166,7 +166,7 @@ impl CameraState { pub fn process_input(&mut self, event: &WindowEvent) { //println!("camera event={:?}", event); match event { - &WindowEvent::CursorMoved { position, .. } => { + WindowEvent::CursorMoved { position, .. } => { let (x, y) = (position.x as i32, position.y as i32); if self.mouse_x == -1 { // Set initial absolute position. @@ -178,7 +178,7 @@ impl CameraState { self.mouse_x = x; self.mouse_y = y; } - &WindowEvent::KeyboardInput { input, .. } => { + WindowEvent::KeyboardInput { input, .. } => { let pressed = input.state == ElementState::Pressed; let key = match input.virtual_keycode { Some(key) => key,