From ee3f85cf554ad99178945f5276c35a39788e5e60 Mon Sep 17 00:00:00 2001 From: "Timothy C. McGrath" Date: Sun, 9 Jun 2002 02:44:11 +0000 Subject: [PATCH] Whoops! I got slap happy with ()'s. I'll learn, just let me make more bugs ;) Tim McGrath (Misty) --- qw/source/sv_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/sv_main.c b/qw/source/sv_main.c index fb670a180..c783d83a0 100644 --- a/qw/source/sv_main.c +++ b/qw/source/sv_main.c @@ -568,7 +568,7 @@ SV_CheckLog (void) // bump sequence if almost full, or ten minutes have passed and // there is something still sitting there if (sz->cursize > LOG_HIGHWATER - || ((realtime - svs.logtime) > (LOG_FLUSH && sz->cursize)) + || ((realtime - svs.logtime) > LOG_FLUSH && sz->cursize) || (realtime - svs.logtime) < 0) { // swap buffers and bump sequence svs.logtime = realtime;