↧
FPS problem using OnTimer()
SetTimer is simply the wrong timer to use. A Waitable Timer would be a much better choice.To understand why, read this tutorial on timers.
View ArticleFPS problem using OnTimer()
Hello, i'm using OnTimer() function with MFC C++. I've set the timer: SetTimer(1,1,NULL); The second parameter means the fps as i know. I use the timer to move different kind of objects on my screen....
View Article