Fix typo in rmodels.c (#2976)

Upate -> Update
This commit is contained in:
Ikko Eltociear Ashimine 2023-03-21 00:43:22 +09:00 committed by GitHub
parent e450c75f6f
commit ace7aef0e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3400,7 +3400,7 @@ void GenMeshTangents(Mesh *mesh)
{
if (mesh->vboId[SHADER_LOC_VERTEX_TANGENT] != 0)
{
// Upate existing vertex buffer
// Update existing vertex buffer
rlUpdateVertexBuffer(mesh->vboId[SHADER_LOC_VERTEX_TANGENT], mesh->tangents, mesh->vertexCount*4*sizeof(float), 0);
}
else