From f230dcd7017bac6d5db2d1c10a2b2af0c3440059 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Mon, 23 Jan 2023 16:14:50 -0800 Subject: [PATCH] Lint --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9b4d510..9157e97 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -92,7 +92,7 @@ impl Screen { fn metamode(&self, map: &ScreenMapping) -> Result { let Resolution { width, height } = self.resolution; let Offset { x, y } = self.offset; - let (in_w, in_h) = match self.orientation { + let (_in_w, _in_h) = match self.orientation { Orientation::None | Orientation::Invert => (width, height), Orientation::Right | Orientation::Left => (height, width), };