From: Jarl Gullberg Date: Thu, 20 Jul 2017 10:49:03 +0000 (+0200) Subject: Corrected XML comments to reflect now removed JoystickAxis enumeration. X-Git-Tag: v3.0.0~77^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=56b51702c2a83c4d022965530a27bfd81e9f2f87;p=platform%2Fcore%2Fcsapi%2Fopentk.git Corrected XML comments to reflect now removed JoystickAxis enumeration. --- diff --git a/src/OpenTK/Input/JoystickState.cs b/src/OpenTK/Input/JoystickState.cs index 59b190c..623866f 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;