fix(gltf): correct argument type to match declaration (#9421)

This commit is contained in:
André Costa
2025-12-21 11:10:29 +01:00
committed by GitHub
parent 56d66dd7b1
commit fed307eb93
@@ -35,7 +35,7 @@
* GLOBAL FUNCTIONS
**********************/
lv_gltf_primitive_t * lv_gltf_data_get_primitive_from_mesh(lv_gltf_mesh_data_t * mesh, uint64_t index)
lv_gltf_primitive_t * lv_gltf_data_get_primitive_from_mesh(lv_gltf_mesh_data_t * mesh, size_t index)
{
return &(mesh->primitives[index]);
}