summaryrefslogtreecommitdiffhomepage
path: root/src/point.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-10-11 17:53:25 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-10-11 17:57:13 +0200
commit5d1954365b9c1010372dfc020afb7ff7450b4e14 (patch)
tree9809411ea0468da74df62eb6c31849c1df020ea4 /src/point.cpp
parentca4544f04cc67c296e58170e76203bc11519d988 (diff)
a
Diffstat (limited to 'src/point.cpp')
-rw-r--r--src/point.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/point.cpp b/src/point.cpp
index f21e2d40..67a79475 100644
--- a/src/point.cpp
+++ b/src/point.cpp
@@ -7,8 +7,8 @@ Debug& operator<<(Debug& dbg, const point& pt)
const auto flags = dbg.flags();
dbg.setFlags(flags | Debug::Flag::NoSpace);
- auto c = Vector3i(pt.coord.chunk3());
- auto t = Vector2i(pt.coord.local());
+ auto c = Vector3i(pt.chunk3());
+ auto t = Vector2i(pt.local());
auto o = pt.offset;
dbg << "point{";