mirror of
https://github.com/cc65/cc65.git
synced 2025-01-26 17:36:57 +00:00
Fixed an invalid offset.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5635 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
a9550ade4c
commit
dd6475ac3d
@ -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
|
||||
* 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;
|
||||
V.LowPart = T->dwLowDateTime;
|
||||
V.HighPart = T->dwHighDateTime;
|
||||
|
Loading…
x
Reference in New Issue
Block a user