From 4537e1789435659fc9210a7e2e5854421546e32c Mon Sep 17 00:00:00 2001 From: bjorn Date: Thu, 20 Apr 2017 21:20:43 -0700 Subject: [PATCH] Fix typo; --- src/graphics/mesh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/mesh.c b/src/graphics/mesh.c index fc4fc7dc..f112b0e1 100644 --- a/src/graphics/mesh.c +++ b/src/graphics/mesh.c @@ -20,7 +20,7 @@ static void lovrMeshBindAttributes(Mesh* mesh) { if (location >= 0 && (mesh->enabledAttributes & (1 << i))) { glEnableVertexAttribArray(location); - if (attribute.type == MESH_INT ) { + if (attribute.type == MESH_INT) { if (GLAD_GL_ES_VERSION_2_0) { error("Integer attributes are not supported on this platform."); } else {