From: Brian M. <ma...@us...> - 2002-09-03 18:54:44
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal/test In directory usw-pr-cvs1:/tmp/cvs-serv5649/org/lwjgl/openal/test Modified Files: BasicTest.java Log Message: mod: updated to create/destroy architecture Index: BasicTest.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/openal/test/BasicTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal/test/BasicTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- BasicTest.java 29 Aug 2002 12:44:32 -0000 1.2 +++ BasicTest.java 3 Sep 2002 18:54:40 -0000 1.3 @@ -71,8 +71,28 @@ */ public BasicTest() { al = new AL(); + try { + al.create(); + } catch (Exception e) { + e.printStackTrace(); + return; + } + alc = new ALC(); + try { + alc.create(); + } catch (Exception e) { + e.printStackTrace(); + return; + } + alut = new ALUT(); + try { + alut.create(); + } catch (Exception e) { + e.printStackTrace(); + return; + } } /** |