From c2f33e2dbf9e0c5470d4e062166b349c9d3e8f7d Mon Sep 17 00:00:00 2001 From: Adam Whitehurst Date: Sun, 16 May 2021 15:08:04 -0700 Subject: [PATCH] chore: more descriptive comment --- voxygen/src/window.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/voxygen/src/window.rs b/voxygen/src/window.rs index d75cc87785..7d5c7f7a85 100644 --- a/voxygen/src/window.rs +++ b/voxygen/src/window.rs @@ -295,7 +295,8 @@ pub enum Event { MouseButton(MouseButton, PressState), /// The camera has been requested to zoom. Zoom(f32), - /// A key that the game recognises has been pressed or released. + /// A key that the game recognizes has been pressed (true) or released + /// (false). InputUpdate(GameInput, bool), /// Event that the ui uses. Ui(ui::Event),