|
From: Elias N. <eli...@us...> - 2005-05-12 07:47:15
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/macosx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22075/src/native/macosx Modified Files: org_lwjgl_input_Mouse.c Log Message: OpenAL: Made the openal library path returned by the current ClassLoader and cwd more override java.library.path. Converted some printfDebug to printfDebugJava Index: org_lwjgl_input_Mouse.c =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/macosx/org_lwjgl_input_Mouse.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- org_lwjgl_input_Mouse.c 15 Nov 2004 15:28:53 -0000 1.2 +++ org_lwjgl_input_Mouse.c 12 May 2005 07:47:06 -0000 1.3 @@ -69,7 +69,7 @@ CGGetLastMouseDelta(&dx, &dy); int buffer_length = (*env)->GetDirectBufferCapacity(env, delta_buffer); if (buffer_length != 2) { - printfDebug("Delta buffer not large enough!\n"); + printfDebugJava(env, "Delta buffer not large enough!"); return; } jint *buffer = (*env)->GetDirectBufferAddress(env, delta_buffer); |