1
1

Cleanup: restore parenthesis removed in recent commit

Partial revert [0], removed by accident because the -fpermissive
flag was enabled with collada.

[0]: 34477bbfcd
This commit is contained in:
2022-09-26 21:49:31 +10:00
parent b211540783
commit 03eac69c61

View File

@@ -1022,7 +1022,7 @@ bool ArmatureImporter::get_joint_bind_mat(float m[4][4], COLLADAFW::Node *joint)
bool found = false;
for (it = skin_by_data_uid.begin(); it != skin_by_data_uid.end(); it++) {
SkinInfo &skin = it->second;
if (found = skin.get_joint_inv_bind_matrix(m, joint)) {
if ((found = skin.get_joint_inv_bind_matrix(m, joint))) {
invert_m4(m);
break;
}