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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_profiling.cpp b/src/newgrf_profiling.cpp
index e9a0dd92d..17f32384d 100644
--- a/src/newgrf_profiling.cpp
+++ b/src/newgrf_profiling.cpp
@@ -109,7 +109,7 @@ uint32 NewGRFProfiler::Finish()
fputs("Tick,Sprite,Feature,Item,CallbackID,Microseconds,Depth,Result\n", f);
for (const Call &c : this->calls) {
- fprintf(f, "%u,%u,0x%X,%d,0x%X,%u,%u,%u\n", c.tick, c.root_sprite, c.feat, c.item, (uint)c.cb, c.time, c.subs, c.result);
+ fprintf(f, "%u,%u,0x%X,%u,0x%X,%u,%u,%u\n", c.tick, c.root_sprite, c.feat, c.item, (uint)c.cb, c.time, c.subs, c.result);
total_microseconds += c.time;
}