summaryrefslogtreecommitdiff
path: root/src/cube.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cube.cpp')
-rw-r--r--src/cube.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cube.cpp b/src/cube.cpp
index fddc601..2fe855a 100644
--- a/src/cube.cpp
+++ b/src/cube.cpp
@@ -2,5 +2,5 @@
Cube::Cube() {
for (std::uint8_t i = 0; i < 8; ++i)
- m_vertices.add({(i >> 2) & 1, (i >> 1) & 1, i & 1});
+ vertices.add({(i >> 2) & 1, (i >> 1) & 1, i & 1});
}