mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +00:00
Whoops! I got slap happy with ()'s. I'll learn, just let me make more
bugs ;) Tim McGrath (Misty)
This commit is contained in:
parent
814b1b5f2b
commit
ee3f85cf55
1 changed files with 1 additions and 1 deletions
|
@ -568,7 +568,7 @@ SV_CheckLog (void)
|
||||||
// bump sequence if almost full, or ten minutes have passed and
|
// bump sequence if almost full, or ten minutes have passed and
|
||||||
// there is something still sitting there
|
// there is something still sitting there
|
||||||
if (sz->cursize > LOG_HIGHWATER
|
if (sz->cursize > LOG_HIGHWATER
|
||||||
|| ((realtime - svs.logtime) > (LOG_FLUSH && sz->cursize))
|
|| ((realtime - svs.logtime) > LOG_FLUSH && sz->cursize)
|
||||||
|| (realtime - svs.logtime) < 0) {
|
|| (realtime - svs.logtime) < 0) {
|
||||||
// swap buffers and bump sequence
|
// swap buffers and bump sequence
|
||||||
svs.logtime = realtime;
|
svs.logtime = realtime;
|
||||||
|
|
Loading…
Reference in a new issue