Commit 8b70bda5 authored by Gildas Bazin's avatar Gildas Bazin

* src/misc/mtime.c: actually tested and fixed my latest changes ;)

parent 404e9c36
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Functions are prototyped in mtime.h. * Functions are prototyped in mtime.h.
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001, 2003 VideoLAN * Copyright (C) 1998-2001, 2003 VideoLAN
* $Id: mtime.c,v 1.40 2003/12/09 19:18:48 gbazin Exp $ * $Id: mtime.c,v 1.41 2003/12/11 10:44:32 gbazin Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* *
...@@ -168,7 +168,7 @@ mtime_t mdate( void ) ...@@ -168,7 +168,7 @@ mtime_t mdate( void )
if( i_wrap_counts == -1 ) if( i_wrap_counts == -1 )
{ {
/* Initialization */ /* Initialization */
i_previous_time = usec_time; i_previous_time = I64C(1000) * GetTickCount();
InitializeCriticalSection( &date_lock ); InitializeCriticalSection( &date_lock );
i_wrap_counts = 0; i_wrap_counts = 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment