From 56b51702c2a83c4d022965530a27bfd81e9f2f87 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Thu, 20 Jul 2017 12:49:03 +0200 Subject: [PATCH] Corrected XML comments to reflect now removed JoystickAxis enumeration. --- src/OpenTK/Input/JoystickState.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OpenTK/Input/JoystickState.cs b/src/OpenTK/Input/JoystickState.cs index 59b190c7..623866f7 100644 --- a/src/OpenTK/Input/JoystickState.cs +++ b/src/OpenTK/Input/JoystickState.cs @@ -52,14 +52,14 @@ namespace OpenTK.Input private JoystickHatState hat3; /// - /// Gets a value between -1.0 and 1.0 representing the current offset of the specified . + /// Gets a value between -1.0 and 1.0 representing the current offset of the specified axis. /// /// - /// A value between -1.0 and 1.0 representing offset of the specified . + /// A value between -1.0 and 1.0 representing offset of the specified axis. /// If the specified axis does not exist, then the return value is 0.0. Use /// to query the number of available axes. /// - /// The to query. + /// The axis to query. public float GetAxis(int axis) { return GetAxisRaw(axis) * ConversionFactor;