From 43ff0932f44e4854cb069cca5b37b84a9aa13c3a Mon Sep 17 00:00:00 2001 From: Dabb Date: Wed, 2 Aug 2000 15:16:36 +0000 Subject: [PATCH] Fixed stupid borland complier error --- source/sv_send.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/sv_send.c b/source/sv_send.c index eb61533..3949a8d 100644 --- a/source/sv_send.c +++ b/source/sv_send.c @@ -142,9 +142,9 @@ void Con_Printf (char *fmt, ...) vsnprintf (msg, sizeof(msg), fmt, argptr); va_end (argptr); - if (sv_timestamps && sv_timestamps->value && sv_timefmt && sv_timefmt->string) + if (sv_timestamps && sv_timefmt && sv_timefmt->string && sv_timestamps->value) timestamps = true; - + if (timestamps) { mytime = time (NULL); local = localtime (&mytime);