From 1b24514ed9e07922df0f4f02a184e760852a5416 Mon Sep 17 00:00:00 2001 From: Jamie Wong Date: Tue, 12 Apr 2016 22:36:56 +0800 Subject: [PATCH] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a063b6..8bc365a 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ for (size_t i = 0; i < shapes.size(); i++) { for (size_t n = 0; n < shapes[i].mesh.num_vertices.size(); n++) { int ngon = shapes[i].mesh.num_vertices[n]; for (size_t f = 0; f < ngon; f++) { - unsigend int v = shapes[i].mesh.indices[indexOffset + f]; + unsigned int v = shapes[i].mesh.indices[indexOffset + f]; printf(" face[%ld] v[%ld] = (%f, %f, %f)\n", n, shapes[i].mesh.positions[3*v+0], shapes[i].mesh.positions[3*v+1],