mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 19:13:07 +01:00
Use localtime instead of gmtime in file browser.
This commit is contained in:
@@ -73,14 +73,14 @@ namespace Platform
|
||||
std::string FormatShortDate(std::time_t timestamp)
|
||||
{
|
||||
char date[20];
|
||||
std::strftime(date, sizeof(date), "%x", std::gmtime(×tamp));
|
||||
std::strftime(date, sizeof(date), "%x", std::localtime(×tamp));
|
||||
return std::string(date);
|
||||
}
|
||||
|
||||
std::string FormatTime(std::time_t timestamp)
|
||||
{
|
||||
char time[20];
|
||||
std::strftime(time, sizeof(time), "%X", std::gmtime(×tamp));
|
||||
std::strftime(time, sizeof(time), "%X", std::localtime(×tamp));
|
||||
return std::string(time);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user