diff --git a/src/os/unix/mod.rs b/src/os/unix/mod.rs index 06c7baa..4964bc9 100644 --- a/src/os/unix/mod.rs +++ b/src/os/unix/mod.rs @@ -177,7 +177,7 @@ impl Window { } #[inline] - pub fn set_position(&mut self, _: isize, _: isize) { + pub fn set_position(&mut self, x: isize, y: isize) { unsafe { mfb_set_position(self.window_handle, x as i32, y as i32) } }