[lwjgl] OpenAL UnsatisfiedLinkError

Hello,

As my game is developing, I am in need of some background music for ambiance.
Now this should not be any problem, except the application keeps crashing on any OpenAL call.

I am currently running the latest java, and lwjgl 1.9.1 (also tried 1.9.0).
Error:


Exception in thread "Thread-4" java.lang.UnsatisfiedLinkError: org.lwjgl.openal.AL10.nalListenerfv(IJ)V
	at org.lwjgl.openal.AL10.nalListenerfv(Native Method)
	at org.lwjgl.openal.AL10.alListener(AL10.java:685)
	at Sound.SoundLoader.<clinit>(SoundLoader.java:33)

Speakers are connected properly and I am getting pretty desperate getting this to work.
Does anyone have a clue what could be causing this or got another audio lib as suggestion?

Hi

I dunno if this is even relevant to your issue, but I googled your issue and found another discussion where the user got an error when they forgot [icode]AL.create()[/icode]. Again, this may not be relevant, but I thought I should post it :slight_smile:

CopyableCougar4

Have you set up the OpenAL natives correctly for your project?

Yes,these are embedded in lwjgl

Thank you, this solved the problem :slight_smile:

Happy to help :slight_smile:

CopyableCougar4