Method Sys.setProcessPriority with lwjgl095 not found

Just started to take my first attempt in using jME, and stumbled:


java.lang.NoSuchMethodError: org.lwjgl.Sys.setProcessPriority(I)V
        at com.jme.util.lwjgl.LWJGLTimer.<init>(Unknown Source)
        at com.jme.util.Timer.getTimer(Timer.java:96)
        at com.jme.app.SimpleGame.initSystem(SimpleGame.java:244)
        at com.jme.app.BaseGame.start(BaseGame.java:59)
        at Main.main(Main.java:17)



while doing just a basic test like the very first example described in the Starter.pdf. Is this because i tried using lwjgl-win32-0.95 ? And if so, are there plans to adapt to the new architecture of lwjgl? Or, can anybody point me to a previous version?

We’ll get 0.95 support in before too long, but right now it’s only 0.94.

Lwjgl 0.95 has just been release, you should use the 0.94 at the moment… It can be found in the download area on the sourceforge project page.



Chman