diff options
Diffstat (limited to 'src/cube.cpp')
-rw-r--r-- | src/cube.cpp | 2 |
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}); } |