Check result of FileTimeToLocalFileTime; add to changelog.

This commit is contained in:
Aaron van Geffen 2018-08-14 23:29:36 +02:00
parent 4a442d0d6d
commit 7cc5bc87e9
2 changed files with 12 additions and 13 deletions

View File

@ -36,6 +36,7 @@
- Fix: [#7804] Russian ride descriptions are cut off.
- Fix: [#7872] CJK tooltips are often cut off.
- Fix: [#7895] Import of Mega Park and the RCT1 title music do not work on some RCT1 sources.
- Improved: [#7899] Timestamps in the load/save screen are now displayed using local timezone instead of GMT.
0.2.0 (2018-06-10)
------------------------------------------------------------------------

View File

@ -329,20 +329,18 @@ time_t platform_file_get_modified_time(const utf8* path)
BOOL result = GetFileAttributesExW(wPath, GetFileExInfoStandard, &data);
free(wPath);
if (result)
{
FILETIME localFileTime;
FileTimeToLocalFileTime(&data.ftLastWriteTime, &localFileTime);
ULARGE_INTEGER ull;
ull.LowPart = localFileTime.dwLowDateTime;
ull.HighPart = localFileTime.dwHighDateTime;
return ull.QuadPart / 10000000ULL - 11644473600ULL;
}
else
{
if (!result)
return 0;
}
FILETIME localFileTime;
result = FileTimeToLocalFileTime(&data.ftLastWriteTime, &localFileTime);
if (!result)
return 0;
ULARGE_INTEGER ull;
ull.LowPart = localFileTime.dwLowDateTime;
ull.HighPart = localFileTime.dwHighDateTime;
return ull.QuadPart / 10000000ULL - 11644473600ULL;
}
uint8_t platform_get_locale_currency()