cleanup some whitespace

This commit is contained in:
Bill Currie 2000-10-05 19:15:41 +00:00
parent 3df74ebf3f
commit bd22c816d2

View file

@ -177,15 +177,14 @@ int main(int argc, char *argv[])
SV_Init (&parms);
// run one frame immediately for first heartbeat
// run one frame immediately for first heartbeat
SV_Frame (0.1);
//
// main loop
//
//
// main loop
//
oldtime = Sys_DoubleTime () - 0.1;
while (1)
{
while (1) {
// select on the net socket and stdin
// the only reason we have a timeout at all is so that if the last
// connected client times out, the message would not otherwise
@ -207,7 +206,8 @@ int main(int argc, char *argv[])
SV_Frame (time);
// extrasleep is just a way to generate a fucked up connection on purpose
// extrasleep is just a way to generate a fucked up connection on
// purpose
if (sys_extrasleep->value)
usleep (sys_extrasleep->value);
}