Hmmm... feel a little stupid here, must be missing something obvious.
I've never tried FMod before, trying to run the test example. I've got LWJGL 1.1 natives in my library path, but I get this:
org.lwjgl.fmod3.FMODException: Unable to load fmod library
at org.lwjgl.fmod3.FMOD.create(FMOD.java:292)
at com.the2bears.test.fmod.Main.main(Main.java:63)
This part of org.lwjgl.fmod3.FMOD confuses me:
switch (LWJGLUtil.getPlatform()) {
case LWJGLUtil.PLATFORM_WINDOWS:
libname = "fmod.dll";
break;
What's going on here? The .dll is lwjgl-fmod3.dll and that apparently gets loaded in a static block. I'm stumped, as this is called in FMOD.create().
Bill