Fix: NLA Blend Domain Enable All Typo

Introduced by my recent commit: rBc48360c2559a

Accidentally used 4 instead of `necs->length`.
This commit is contained in:
Wayde Moss
2021-02-17 01:06:41 -05:00
parent 2da0f3e523
commit 17dddc9417

View File

@@ -2491,7 +2491,7 @@ void nlasnapshot_enable_all_blend_domain(NlaEvalSnapshot *snapshot)
continue;
}
BLI_bitmap_set_all(necs->blend_domain.ptr, true, 4);
BLI_bitmap_set_all(necs->blend_domain.ptr, true, necs->length);
}
}