int main(int argc, char *argv[]) //line 703
{
/* Stuff that happens when TPT first starts up. */
while (!sdl_poll()) //the main loop //line 887
{
/* Stuff that happens on every frame */
} // line 2726
/* Stuff that happens when you exit */
}
if (sdl_key=='q' || sdl_key==SDLK_ESCAPE)
{
if (confirm_ui(vid_buf, "You are about to quit", "Are you sure you want to quit?", "Quit"))
break;
}