Skip to content

Commit

Permalink
Fixes for travis-ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
Unarelith committed Mar 15, 2020
1 parent 53f3c44 commit 4b58389
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions client/source/gui/InventoryCube.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ void InventoryCube::updateVertexBuffer(const Block &block) {

glm::vec3 vertexPos[nVertsPerCube] {
// Order is important. It matches the bit order defined in BlockGeometry::cubeVerts.
{0, 0, 0},
{m_size, 0, 0},
{0, m_size, 0},
{m_size, m_size, 0},
{0, 0, m_size},
{m_size, 0, m_size},
{0, m_size, m_size},
{m_size, m_size, m_size},
glm::vec3{0, 0, 0},
glm::vec3{m_size, 0, 0},
glm::vec3{0, m_size, 0},
glm::vec3{m_size, m_size, 0},
glm::vec3{0, 0, m_size},
glm::vec3{m_size, 0, m_size},
glm::vec3{0, m_size, m_size},
glm::vec3{m_size, m_size, m_size},
};

const gk::FloatBox &boundingBox = block.boundingBox();
Expand Down

0 comments on commit 4b58389

Please sign in to comment.