simple optimization

This commit is contained in:
Brian Matzon 2004-12-07 21:50:30 +00:00
parent 8f4b0eb455
commit 5a01a1313a
1 changed files with 4 additions and 1 deletions

View File

@ -136,6 +136,9 @@ public class Mouse {
private static final int EVENT_SIZE = 5; private static final int EVENT_SIZE = 5;
private static boolean isGrabbed; private static boolean isGrabbed;
/** Whether we're running windows - which need to manually update cursor animation */
private static final boolean isWindows = System.getProperty("os.name").startsWith("Win");
/** /**
* Mouse cannot be constructed. * Mouse cannot be constructed.
@ -585,7 +588,7 @@ public class Mouse {
* shouldn't be called otherwise * shouldn't be called otherwise
*/ */
public static void updateCursor() { public static void updateCursor() {
if (System.getProperty("os.name").startsWith("Win") && currentCursor != null && currentCursor.hasTimedOut()) { if (isWindows && currentCursor != null && currentCursor.hasTimedOut()) {
currentCursor.nextCursor(); currentCursor.nextCursor();
try { try {
setNativeCursor(currentCursor); setNativeCursor(currentCursor);