Okey straight to the point.
The problem I'm encountering is this: I have a small game, which runs on JFrame with Canvas. JFrame adds KeyListener. Everything works properly, but when I click on my JFrame inside it the code partly freezes (if I click on framework, nothing happens). My game loop seems to be working (still prints out fps and ticks). This seems to be problem with KeyListener. Anybody encountered anything like this before?
Edit
I have solved my problem. Sorry for disturbing you people. I don't know why, but the problem seems to be that I add my KeyListener to the JFrame. I changed it to be added to my Canvas and it works like a charm.
Ok bye :)