Merge pull request #7903 from AaronVanGeffen/fix/7899

Use localtime instead of gmtime in file browser
This commit is contained in:
Aaron van Geffen 2018-08-15 10:12:35 +02:00 committed by GitHub
commit 0d99186085
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 12 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

@ -73,14 +73,14 @@ namespace Platform
std::string FormatShortDate(std::time_t timestamp)
{
char date[20];
std::strftime(date, sizeof(date), "%x", std::gmtime(&timestamp));
std::strftime(date, sizeof(date), "%x", std::localtime(&timestamp));
return std::string(date);
}
std::string FormatTime(std::time_t timestamp)
{
char time[20];
std::strftime(time, sizeof(time), "%X", std::gmtime(&timestamp));
std::strftime(time, sizeof(time), "%X", std::localtime(&timestamp));
return std::string(time);
}

View File

@ -329,17 +329,18 @@ time_t platform_file_get_modified_time(const utf8* path)
BOOL result = GetFileAttributesExW(wPath, GetFileExInfoStandard, &data);
free(wPath);
if (result)
{
ULARGE_INTEGER ull;
ull.LowPart = data.ftLastWriteTime.dwLowDateTime;
ull.HighPart = data.ftLastWriteTime.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()