summaryrefslogtreecommitdiffstats
path: root/src/ChunkDef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChunkDef.h')
-rw-r--r--src/ChunkDef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h
index 11ef96e81..ea2a3a06d 100644
--- a/src/ChunkDef.h
+++ b/src/ChunkDef.h
@@ -90,7 +90,7 @@ public:
/** Returns a string that describes the chunk coords, suitable for logging. */
AString ToString() const
{
- return Printf("[%d, %d]", m_ChunkX, m_ChunkZ);
+ return fmt::format(FMT_STRING("[{}, {}]"), m_ChunkX, m_ChunkZ);
}
} ;