mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 23:02:16 +00:00
Fixed stupid borland complier error
This commit is contained in:
parent
3673d04bee
commit
43ff0932f4
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue