The AppGameContainer's setMouseCursor(xxx) methods catches an Exception:
Code:
try {
......
Mouse.setNativeCursor(cursor);
} catch (Exception e) {
Log.error("Failed to load and apply cursor.", e);
}
But it doesn't catch an
NoSuchMethodError (
Throwable>
Error>..). This Error is will be thrown in " Mouse.setNativeCursor(..);" on Machines with older ATI graphic cards. Also tried the newest LWJGL version, which had no change to this behavior. Maybe this Bug also relies to LWJGL, but it could be easily solved by catching for
Throwable instead of Exception.
I'll also open an
RFE, for a check if the Cursor was set. Please check also this, because I need to get them fixed at once.
Best wishes,
Tobse