diff options
Diffstat (limited to 'src/ChunkDef.h')
-rw-r--r-- | src/ChunkDef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h index d73bd4198..bfed62aae 100644 --- a/src/ChunkDef.h +++ b/src/ChunkDef.h @@ -217,7 +217,7 @@ public: { return MakeIndexNoCheck(x, y, z); } - LOGERROR("cChunkDef::MakeIndex(): coords out of range: {%d, %d, %d}; returning fake index 0", x, y, z); + FLOGERROR("cChunkDef::MakeIndex(): coords out of range: {0}; returning fake index 0", Vector3i{x, y, z}); ASSERT(!"cChunkDef::MakeIndex(): coords out of chunk range!"); return 0; } |