Ty! Since the subject is jinput question, I'm going to ask another question about it.

Is it normal if my comp can flip through empty program like this:
class Test
{
public static void main(String args[])
{
int frames = 0;
long timer = System.currentTimeMillis();
while(true)
{
if(System.currentTimeMillis() >= timer + 1000)
{
System.out.println("fps: " + frames);
frames = 0;
timer = System.currentTimeMillis();
}
frames++;
}
}
}
-> about 17 million times per second and with input checking for Keyboard and 2x Joysticks(with exclusion of additional hardware like mouse, etc) about 45 000 times/s or does my jinput code blow?

E: Nevermind after I used randomly colored and positioned QL_QUADS those frames were 585 per update w/o jinput and 550 w/ it.