I have modified my cursor with
cotainer.setMouseCursor(Image image, int hotSpotX, int hotSpotY)
How do I change it back to the system default after I've set it?
Thanks.
try container.setMouseCursor(org.lwjgl.input.Cursor.CURSOR_8_BIT_ALPHA, int hotSpotX, int hotSpotY);
check if it works, or if it's not exactly what you want..
EDIT: here container.setDefaultMouseCursor()
reference