mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-06-02 01:51:37 +00:00
cleanup some whitespace
This commit is contained in:
parent
3df74ebf3f
commit
bd22c816d2
1 changed files with 12 additions and 12 deletions
|
@ -177,15 +177,14 @@ int main(int argc, char *argv[])
|
||||||
|
|
||||||
SV_Init (&parms);
|
SV_Init (&parms);
|
||||||
|
|
||||||
// run one frame immediately for first heartbeat
|
// run one frame immediately for first heartbeat
|
||||||
SV_Frame (0.1);
|
SV_Frame (0.1);
|
||||||
|
|
||||||
//
|
//
|
||||||
// main loop
|
// main loop
|
||||||
//
|
//
|
||||||
oldtime = Sys_DoubleTime () - 0.1;
|
oldtime = Sys_DoubleTime () - 0.1;
|
||||||
while (1)
|
while (1) {
|
||||||
{
|
|
||||||
// select on the net socket and stdin
|
// select on the net socket and stdin
|
||||||
// the only reason we have a timeout at all is so that if the last
|
// the only reason we have a timeout at all is so that if the last
|
||||||
// connected client times out, the message would not otherwise
|
// connected client times out, the message would not otherwise
|
||||||
|
@ -207,7 +206,8 @@ int main(int argc, char *argv[])
|
||||||
|
|
||||||
SV_Frame (time);
|
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)
|
if (sys_extrasleep->value)
|
||||||
usleep (sys_extrasleep->value);
|
usleep (sys_extrasleep->value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue