Sorry, for taking so long to get back, but I've been distracted by life stuff...
My apologies as well. A few of these posts seemed to have slipped my attention.
1) i usually target about 30 fps
2) windows
3) application
4) java 1.4.2_06 and the dll must be loading or else I can't see how the gage timer would be working.
Number 4 can be checked by looking at the console on startup. If you see a stacktrace, the DLL is not loading. Would you be able to post your timing code? It should look something like this:
1 2 3 4 5 6 7 8 9 10 11 12
| AdvancedTimer timer = new AdvancedTimer(); long frameTicks = timer.getTicksPerSecond()/30; long time = 0;
timer.start();
while(running) { at.sleepUntil(time + frameTicks); time += frameTicks; } |
Let me know if that helps. :-)