mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
[qtv] Handle time a little more correctly
realtime needs to be set before any other part of qtv runs. Fixes the instant timeouts.
This commit is contained in:
parent
57dbd7ed72
commit
58bbed722a
1 changed files with 1 additions and 1 deletions
|
@ -366,10 +366,10 @@ main (int argc, const char *argv[])
|
|||
Sys_Printf ("Ohayou gozaimasu\n");
|
||||
|
||||
while (1) {
|
||||
realtime = Sys_DoubleTime () + 1;
|
||||
Cbuf_Execute_Stack (qtv_cbuf);
|
||||
|
||||
Sys_CheckInput (1, net_socket);
|
||||
realtime = Sys_DoubleTime () + 1;
|
||||
|
||||
qtv_read_packets ();
|
||||
|
||||
|
|
Loading…
Reference in a new issue