mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 02:14:26 +02:00
Fix comparison warning
This commit is contained in:
parent
d9eaa2076d
commit
0d92ec1f5b
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ void HFMModel::computeKdops() {
|
|||
glm::vec3(INV_SQRT_3, INV_SQRT_3, -INV_SQRT_3),
|
||||
glm::vec3(INV_SQRT_3, -INV_SQRT_3, -INV_SQRT_3)
|
||||
};
|
||||
if (joints.size() != shapeVertices.size()) {
|
||||
if (joints.size() != (int)shapeVertices.size()) {
|
||||
return;
|
||||
}
|
||||
// now that all joints have been scanned compute a k-Dop bounding volume of mesh
|
||||
|
|
Loading…
Reference in a new issue