Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal
In directory sc8-pr-cvs1:/tmp/cvs-serv29741
Modified Files:
MovingSoundTest.java
Log Message:
fix: new display creation
Index: MovingSoundTest.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/MovingSoundTest.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/MovingSoundTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- MovingSoundTest.java 19 Dec 2002 22:18:10 -0000 1.1
+++ MovingSoundTest.java 20 Dec 2002 20:44:54 -0000 1.2
@@ -82,7 +82,7 @@
//initialize display
try {
- Display.create(new DisplayMode(320, 240, 32, 60), false);
+ Display.create(new DisplayMode(320, 240, 32, 60), 8, 24, 0, false);
} catch (Exception e) {
e.printStackTrace();
exit(-1);
|