From: Carsten W. <ca...@us...> - 2007-05-06 19:54:48
|
Update of /cvsroot/jake2/jake2/src/net/java/games/joal/eax In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv28031/src/net/java/games/joal/eax Modified Files: EAX.java Log Message: bugfix: remove the wrong library loading, joal_native is the right library name but this library loading is never needed because EAXFactory does this job Index: EAX.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/net/java/games/joal/eax/EAX.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EAX.java 6 May 2007 19:52:21 -0000 1.1 --- EAX.java 6 May 2007 19:54:35 -0000 1.2 *************** *** 42,49 **** */ public class EAX implements EAXConstants { - static { - System.loadLibrary("joal"); - } - public static final int SOURCE = 0; public static final int LISTENER = 1; --- 42,45 ---- |