If you don't use any other synchronized blocks, then there is no one to notify() your thread. This means you are probably telling your app to sleep for at least 3 milliseconds on each iteration. Additionally, you may lose some more time because of the thread giving up its time quantum as it goes to sleep and the clock resolution is also usually more than 1 ms, depending on OS.
64 FPS means a frame takes slightly above 15 ms. Tell us what your "uncapped" FPS is, calculate to how many ms per frame it translates and see what the difference is. If the difference in frame time wit hand without the losted code is on the order of 3-10 ms (10 ms is probably a reasonable upper limit on clock granularity on a sane system), it is probably only the result of the wait(). If without the wait() your frames only take 1 ms, there is probably some additional effect.
EDIT after Jan's comment: 115 FPS means 8.7 ms per frame. Going from that to 15 because of wait(3) seems probable. I'm not sure how running another app in the background may influence it. Perhaps having another task in the background influences the scheduler's behavior. Does the other task bring FPS back to 115 or to some intermediate value?
EDIT after Jan's second comment: if it's 180 instead of 115, we have 5.5 ms per frame. This increases the difference, but with the Windows clock being rather coarse (as others pointed out), this is still within the limits of the effect described above.