Fixed stupid borland complier error

This commit is contained in:
Dabb 2000-08-02 15:16:36 +00:00
parent 3673d04bee
commit 43ff0932f4

View file

@ -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);