Don't set native cursor if not supported by the platform

This commit is contained in:
Elias Naur 2004-11-03 13:49:08 +00:00
parent 7774c02098
commit 742559fe20
1 changed files with 3 additions and 2 deletions

View File

@ -275,6 +275,7 @@ public class Mouse {
buttonCount = Display.getImplementation().getButtonCount();
buttons = BufferUtils.createByteBuffer(buttonCount);
coord_buffer = BufferUtils.createIntBuffer(3);
if (currentCursor != null)
setNativeCursor(currentCursor);
setGrabbed(isGrabbed);
}