From ea901afb1b6b35f2f0ac179c3151ebb1e2db6596 Mon Sep 17 00:00:00 2001 From: TheRealDust <73678906+TheRealDust@users.noreply.github.com> Date: Tue, 16 Jul 2024 21:45:50 +1000 Subject: [PATCH] Fixed Comment Fixed duplicate comment being an incorrect descriptor of mouse_y --- src/sdl2/event.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl2/event.rs b/src/sdl2/event.rs index 820a086b35..d7e317839c 100644 --- a/src/sdl2/event.rs +++ b/src/sdl2/event.rs @@ -648,7 +648,7 @@ pub enum Event { precise_y: f32, /// The X position of the mouse from the window's origin mouse_x: i32, - /// The X position of the mouse from the window's origin + /// The Y position of the mouse from the window's origin mouse_y: i32, },