summary refs log tree commit diff
path: root/src/World/Clouds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/World/Clouds.cpp')
-rw-r--r--src/World/Clouds.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World/Clouds.cpp b/src/World/Clouds.cpp
index 2567985..b30c0ce 100644
--- a/src/World/Clouds.cpp
+++ b/src/World/Clouds.cpp
@@ -103,7 +103,7 @@ GFX::Mesh Clouds::create_mesh(const CloudMatrix& cloud_matrix) {
             if (!neighbors[2]) faces |= FaceSet::Front;
             if (!neighbors[3]) faces |= FaceSet::Back;
 
-            auto aabb = Math::AABB{{x, 0, y}, {x + 1, 1, y + 1}};
+            auto aabb = AABB{{x, 0, y}, {x + 1, 1, y + 1}};
             auto box = GFX::Util::Primitives::box(aabb, (FaceSet::Value)faces);
             builder.primitive(box);
         }