diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-04-06 23:16:20 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-04-06 23:49:50 +0200 |
commit | a15e41368aad760f054c6e89dff8a9b16fe27f41 (patch) | |
tree | 86844703310c56892ad62f71c8243428794f32a9 | |
parent | 0da9760bbe7c9ee5d4db69f561068c4be6a88e06 (diff) |
c
-rw-r--r-- | src/chunk-region.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chunk-region.cpp b/src/chunk-region.cpp index e28cc041..a787b79b 100644 --- a/src/chunk-region.cpp +++ b/src/chunk-region.cpp @@ -195,7 +195,8 @@ auto chunk::make_pass_region(const pred& f, bool debug, ArrayView<Vector2i> posi ret.time = timeline.currentFrameTime(); if (debug) [[unlikely]] - DBG_nospace << "region: generating for " << _coord << " took " << fraction(1e3f*ret.time, 3) << " ms"; + DBG_nospace << "region: generating for " << _coord + << " took " << fraction(1e3f * ret.time, 3) << " ms"; return ret; } |