diff options
Diffstat (limited to 'source/sys_unix.c')
-rw-r--r-- | source/sys_unix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/sys_unix.c b/source/sys_unix.c index 8c10db9..19ee92c 100644 --- a/source/sys_unix.c +++ b/source/sys_unix.c @@ -484,11 +484,10 @@ void Sys_DebugBreak( void ) { Sys_Milliseconds ================ */ -int curtime; - int Sys_Milliseconds( void ) { struct timeval tp; static int secbase; + int curtime; gettimeofday( &tp, NULL ); |