Hi!
When calling ilGetError the following message is printed:
Java_org_lwjgl_devil_IL_ilGetError
I think you should remove that line from the native source as it doesn't make sense.
/*
* Class: org_lwjgl_devil_IL
* Method: ilGetError
* Signature: ()I
*/
static jint JNICALL Java_org_lwjgl_devil_IL_ilGetError(JNIEnv *env, jclass clazz) {
printf("Java_org_lwjgl_devil_IL_ilGetError\n");
return ilGetError();
}
WiESi