Fixed some JNI errors. One remains.

This commit is contained in:
Caspian Rychlik-Prince 2003-03-17 18:57:05 +00:00
parent 0060b68efd
commit be9286b6a0
1 changed files with 31 additions and 31 deletions

View File

@ -50,15 +50,11 @@ import org.lwjgl.Sys;
*/
public class Mouse {
static {
initialize();
}
/** Has the mouse been created? */
private static boolean created;
/** The mouse buttons status from the last poll */
private static boolean[] buttons;
private static boolean[] buttons = new boolean[4];
/** Delta X */
public static int dx;
@ -75,6 +71,10 @@ public class Mouse {
/** Does this mouse support a scroll wheel */
public static boolean hasWheel = false;
static {
initialize();
}
/**
* Mouse cannot be constructed.
*/