From: <eli...@us...> - 2007-11-14 11:10:56
|
Revision: 2922 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=2922&view=rev Author: elias_naur Date: 2007-11-14 03:10:52 -0800 (Wed, 14 Nov 2007) Log Message: ----------- windows: Use throwFormattedException, not throwException in tryLoadOpenAL() Modified Paths: -------------- trunk/LWJGL/src/native/windows/windows_al.c Modified: trunk/LWJGL/src/native/windows/windows_al.c =================================================================== --- trunk/LWJGL/src/native/windows/windows_al.c 2007-11-14 11:07:22 UTC (rev 2921) +++ trunk/LWJGL/src/native/windows/windows_al.c 2007-11-14 11:10:52 UTC (rev 2922) @@ -58,7 +58,7 @@ if (handleOAL != NULL) { printfDebugJava(env, "Found OpenAL at '%s'", path_str); } else { - throwException(env, "Could not load OpenAL library (%d)", GetLastError()); + throwFormattedException(env, "Could not load OpenAL library (%d)", GetLastError()); } free(path_str); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |