*** empty log message ***

This commit is contained in:
Caspian Rychlik-Prince 2003-06-12 15:19:31 +00:00
parent 13edf0ce99
commit bf2ff00518
2 changed files with 1 additions and 22 deletions

View File

@ -65,11 +65,6 @@ public abstract class BaseAL {
*/
private static void initialize() {
System.loadLibrary(org.lwjgl.Sys.getLibraryName());
try {
System.loadLibrary("OpenAL32");
} catch (Exception e) {
System.loadLibrary("openal");
}
}
/**

View File

@ -175,22 +175,6 @@ void* GetFunctionPointer(const char* function) {
*/
void LoadOpenAL(JNIEnv *env, jobjectArray oalPaths) {
/*
* CAS: Experimental new code for loading OpenAL. We're ignoring the paths
* and just trying to load it once.
*/
#ifdef _WIN32
handleOAL = LoadLibrary("OpenAL32.dll");
#endif
#ifdef _X11
handleOAL = dlopen("libopenal.so", RTLD_LAZY);
#endif
#ifdef TARGET_OS_MAC
oalInitEntryPoints();
#endif
/*
jsize pathcount = env->GetArrayLength(oalPaths);
#ifdef _DEBUG
printf("Found %d OpenAL paths\n", pathcount);
@ -218,7 +202,7 @@ void LoadOpenAL(JNIEnv *env, jobjectArray oalPaths) {
break;
}
env->ReleaseStringUTFChars(path, path_str);
*/
}
}
/**