mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
You can not stuff 60 seconds in 5 bits.
svn path=/trunk/; revision=10247
This commit is contained in:
parent
58adcd8099
commit
b95aac5417
2 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@
|
|||
#include <k32.h>
|
||||
|
||||
#include "wine/config.h"
|
||||
#include "wine/port.h"
|
||||
//#include "wine/port.h"
|
||||
#include "wine/debug.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: time.c,v 1.27 2004/06/13 20:04:56 navaraf Exp $
|
||||
/* $Id: time.c,v 1.28 2004/07/22 06:07:02 jimtabor Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -66,7 +66,7 @@ FileTimeToDosDateTime(
|
|||
&SystemTime
|
||||
);
|
||||
|
||||
pdtime->Second = SystemTime.wSecond;
|
||||
pdtime->Second = SystemTime.wSecond / 2;
|
||||
pdtime->Minute = SystemTime.wMinute;
|
||||
pdtime->Hour = SystemTime.wHour;
|
||||
|
||||
|
|
Loading…
Reference in a new issue