Is there a standard value for the amount of time I should wait between each update of the main thread? I'm using SFML on c++, right now I just have a basic loop:
while(game.isRunning()){
game.HandleEvent();
game.Update();
game.Paint();
//time sleep method
}
I'm making a 2d game, so how long should the loop wait before starting over?