summaryrefslogtreecommitdiff
path: root/src/newgrf_profiling.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf_profiling.cpp')
-rw-r--r--src/newgrf_profiling.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/newgrf_profiling.cpp b/src/newgrf_profiling.cpp
index 8ec8cff54..27a1bc80e 100644
--- a/src/newgrf_profiling.cpp
+++ b/src/newgrf_profiling.cpp
@@ -13,9 +13,9 @@
#include "string_func.h"
#include "console_func.h"
#include "spritecache.h"
+#include "walltime_func.h"
#include <chrono>
-#include <time.h>
std::vector<NewGRFProfiler> _newgrf_profilers;
@@ -130,10 +130,8 @@ void NewGRFProfiler::Abort()
*/
std::string NewGRFProfiler::GetOutputFilename() const
{
- time_t write_time = time(nullptr);
-
char timestamp[16] = {};
- strftime(timestamp, lengthof(timestamp), "%Y%m%d-%H%M", localtime(&write_time));
+ LocalTime::Format(timestamp, lastof(timestamp), "%Y%m%d-%H%M");
char filepath[MAX_PATH] = {};
seprintf(filepath, lastof(filepath), "%sgrfprofile-%s-%08X.csv", FiosGetScreenshotDir(), timestamp, BSWAP32(this->grffile->grfid));