Hey,
I got a problem with runnable jars that I export with Eclipse.
VM Call:
java -Djava.library.path=D:\Users\Dario\Desktop\native\windows -jar gametest.jar
Console log:

Exception points to:
1 2 3 4 5 6 7 8 9 10 11 12
| public static void main(String[] args) { try { AppGameContainer app = new AppGameContainer(new Game()); app.setIcon("i/default.png"); app.setDisplayMode(1024, 768, false); app.setTargetFrameRate(30); app.setMouseGrabbed(true); app.start(); } catch (SlickException e) { e.printStackTrace(); } } |
Everything is working fine in Eclipse. Any suggestions? =)