Fix selecting bones

Own error w/ recent USE_OBJECT_MODE_STRICT
This commit is contained in:
Campbell Barton 2018-06-04 12:38:24 +02:00
parent 95011f6d48
commit c2ff37455e
1 changed files with 1 additions and 1 deletions

View File

@ -1261,7 +1261,7 @@ finally:
for (uint i = 0; i < hits; i++) {
if (((buffer4[i].data[3] & 0xFFFF0000) != 0) == is_pose_mode) {
if (i != j) {
buffer4[i] = buffer4[j];
buffer4[j] = buffer4[i];
}
j++;
}