OpenAL console output with 3.0.1

Started by bobjob, September 24, 2016, 22:42:42

Previous topic - Next topic

bobjob

I just got 3.0.1 working.

Everything works fine, but I am getting an OpenAL error line that I didnt get previously.

when I call: device = ALC10.alcOpenDevice((ByteBuffer)null);
the console outputs in 'red'
QuoteAL lib: (EE) GetProcPath: Failed to link /proc/self/file: No such file or directory

It does not seem to effect anything, as sound still works, but I'm wondering if anyone has any insight into this error.

spasi

Reply from OpenAL Soft's developer:

QuoteThat means your system doesn't have either /proc/self/exe or /proc/self/file, which is used to find the binary's directory to look for an app-specific config file (mostly just for self-contained apps that you may want to have custom settings for). It's harmless as long as you don't need it automatically picking up app-specific configs I should probably downgrade that to a warning, though.

bobjob