From 05c2e5844b217a2cd1c86e796ada1eaf6eefcc7d Mon Sep 17 00:00:00 2001 From: Brian Matzon Date: Thu, 15 Aug 2002 14:08:14 +0000 Subject: [PATCH] fixed: joystick javadoc changed to mouse --- src/java/org/lwjgl/input/Mouse.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/java/org/lwjgl/input/Mouse.java b/src/java/org/lwjgl/input/Mouse.java index 7e011269..50845641 100644 --- a/src/java/org/lwjgl/input/Mouse.java +++ b/src/java/org/lwjgl/input/Mouse.java @@ -122,8 +122,8 @@ public class Mouse { private static native int nGetNumButtons(); /** - * Queries whether the joystick has a Z value - * @return true if the joystick has a Z value + * Queries whether the mouse has a Z value + * @return true if the mouse has a Z value */ public static boolean hasZValue() { assert created : "The mouse has not been created."; @@ -134,6 +134,4 @@ public class Mouse { * Native implementation of hasZValue() */ private static native boolean nHasZValue(); - - }