|
From: <eli...@us...> - 2004-03-10 09:08:24
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3546/src/java/org/lwjgl/test/openal Modified Files: BasicTest.java Log Message: Fixed win32 building Index: BasicTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/openal/BasicTest.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- BasicTest.java 26 Feb 2004 21:51:57 -0000 1.14 +++ BasicTest.java 10 Mar 2004 08:42:38 -0000 1.15 @@ -56,7 +56,7 @@ try { AL.create(); } catch (Exception e) { - System.out.println("Unable to create OpenAL.\nPlease make sure that OpenAL is available on this system."); + System.out.println("Unable to create OpenAL.\nPlease make sure that OpenAL is available on this system. Exception: " + e); return; } } |