show/hide this revision's text 2 added 232 characters in body
while( 1 )
{
    game->update();
    game->render();
}

Edit: That is, my app is fundamentally based around an infinite loop, and I can't be bothered to refactor everything just to have the aesthetic purity of always terminating by falling off the end of main().

show/hide this revision's text 1
while( 1 )
{
    game->update();
    game->render();
}