diff --git a/src/native/common/extal.cpp b/src/native/common/extal.cpp index ccb68194..20eef598 100644 --- a/src/native/common/extal.cpp +++ b/src/native/common/extal.cpp @@ -280,10 +280,7 @@ int LoadAL() { alGetIntegerv = (alGetIntegervPROC) GetFunctionPointer("alGetIntegerv"); alGetFloatv = (alGetFloatvPROC) GetFunctionPointer("alGetFloatv"); alGetDoublev = (alGetDoublevPROC) GetFunctionPointer("alGetDoublev"); - printf("alGetString before: %d\n", alGetString); alGetString = (alGetStringPROC) GetFunctionPointer("alGetString"); - printf("alGetString after: %d\n", alGetString); - printf("%s\n", alGetString(AL_RENDERER)); alGetError = (alGetErrorPROC) GetFunctionPointer("alGetError"); alIsExtensionPresent = (alIsExtensionPresentPROC) GetFunctionPointer("alIsExtensionPresent"); alGetProcAddress = (alGetProcAddressPROC) GetFunctionPointer("alGetProcAddress");