fox32: Don't print a message to the terminal when the mouse is clicked

This commit is contained in:
ry755 2022-01-30 01:01:25 -08:00 committed by Ry
parent b957b58fb2
commit 64035f9629

View File

@ -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;
}
}