From 64035f96291cc2f6b3124abb91503163f4d98733 Mon Sep 17 00:00:00 2001 From: ry755 Date: Sun, 30 Jan 2022 01:01:25 -0800 Subject: [PATCH] fox32: Don't print a message to the terminal when the mouse is clicked --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d984567..1527512 100644 --- a/src/main.rs +++ b/src/main.rs @@ -208,7 +208,6 @@ fn main() { mouse_lock.y = mouse_pixel.1; mouse_lock.held = input.mouse_held(0); if input.mouse_pressed(0) { - println!("Mouse click at {:?}", mouse_pixel); mouse_lock.click = true; } }