Fixed an invalid offset.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5635 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -77,7 +77,7 @@ static time_t FileTimeToUnixTime (const FILETIME* T)
|
|||||||
* way to express a number > 32 bit (known to me) but is able to do
|
* way to express a number > 32 bit (known to me) but is able to do
|
||||||
* calculations with 64 bit integers, so we need to do it this way.
|
* calculations with 64 bit integers, so we need to do it this way.
|
||||||
*/
|
*/
|
||||||
static const ULARGE_INTEGER Offs = { 0xB6109100UL, 0x20000000UL };
|
static const ULARGE_INTEGER Offs = { 0xB6109100UL, 0x00000020UL };
|
||||||
ULARGE_INTEGER V;
|
ULARGE_INTEGER V;
|
||||||
V.LowPart = T->dwLowDateTime;
|
V.LowPart = T->dwLowDateTime;
|
||||||
V.HighPart = T->dwHighDateTime;
|
V.HighPart = T->dwHighDateTime;
|
||||||
|
|||||||
Reference in New Issue
Block a user