Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test
In directory sc8-pr-cvs1:/tmp/cvs-serv2086/test
Modified Files:
WindowCreationTest.java
Log Message:
fix: go for 16 bit mode instead of 32
Index: WindowCreationTest.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/WindowCreationTest.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/WindowCreationTest.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- WindowCreationTest.java 28 Mar 2003 22:12:38 -0000 1.3
+++ WindowCreationTest.java 28 Mar 2003 23:58:54 -0000 1.4
@@ -21,7 +21,7 @@
System.out.println("Found " + modes.length + " display modes");
try {
- gl = new GL("WindowCreationTest", 50, 50, 320, 240, 32, 0, 0, 0);
+ gl = new GL("WindowCreationTest", 50, 50, 320, 240, 16, 0, 0, 0);
} catch (Exception e) {
e.printStackTrace();
}
|