|
From: Brian M. <ma...@us...> - 2003-04-27 21:26:05
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal In directory sc8-pr-cvs1:/tmp/cvs-serv17944/org/lwjgl/test/openal Modified Files: BasicTest.java OpenALCreationTest.java Log Message: add: default constructor for OpenAL Index: BasicTest.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/BasicTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/BasicTest.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- BasicTest.java 27 Apr 2003 18:39:18 -0000 1.6 +++ BasicTest.java 27 Apr 2003 21:26:02 -0000 1.7 @@ -58,7 +58,7 @@ * Creates an instance of PlayTest */ public BasicTest() { - al = new AL(null, 44100, 15, false); + al = new AL(); try { al.create(); } catch (Exception e) { Index: OpenALCreationTest.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/OpenALCreationTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/OpenALCreationTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- OpenALCreationTest.java 27 Apr 2003 18:37:38 -0000 1.2 +++ OpenALCreationTest.java 27 Apr 2003 21:26:02 -0000 1.3 @@ -61,7 +61,7 @@ * Creates an instance of OpenALCreationTest */ public OpenALCreationTest() { - al = new AL(null, 44100, 15, false); + al = new AL(); } public void alInitialize() { |