Hi!
I am using LWJGL 0.99 and Java 1.5 Update 5 and FMOD 3.75. I called
FMOD.create();
FSound.FSOUND_Init(44100, 1, 0);
to initialize FMOD and FSound. But when I call FSound_DSP_Create I get this error message:
Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: nFSOUND_DSP_Create
at org.lwjgl.fmod3.FSound.nFSOUND_DSP_Create(Native Method)
at org.lwjgl.fmod3.FSound.FSOUND_DSP_Create(FSound.java:3028)
at PlayDialog$12.actionPerformed(PlayDialog.java:404)
...
Is this my fault, or is this a bug in LWJGL?
WiESi
Ah, seems to be not implemented in LWJGL. Here's what the C source says:
/*
* Class: org_lwjgl_fmod3_FSound
* Method: nFSOUND_DSP_Create
* Signature: (I)J
*/
/* Commented out, conflicting declaration with the header */
/*
So, when will this work?
WiESi
I've been planning on updating the codebase to 3.75 since it got released (as it seems to be the last release). so far I haven't had time and the motivation to do it :(