Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-11-05 05:22:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-05 05:22:49 +0300
commit25a9816c3029e835db838388e0d3f6f4febce947 (patch)
tree98daf0f407047a47c2714fd3e5302732685c8980 /source/blender/blenkernel/intern/armature.c
parent9361c1c83d87429b0aa8755418509ca9ec75e775 (diff)
Cleanup: use bool
Diffstat (limited to 'source/blender/blenkernel/intern/armature.c')
-rw-r--r--source/blender/blenkernel/intern/armature.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c
index be29819a0ee..fa5b59b739d 100644
--- a/source/blender/blenkernel/intern/armature.c
+++ b/source/blender/blenkernel/intern/armature.c
@@ -462,7 +462,7 @@ void BKE_pchan_get_bbone_handles(bPoseChannel *pchan, bPoseChannel **r_prev, bPo
/* Fills the array with the desired amount of bone->segments elements.
* This calculation is done within unit bone space. */
-void b_bone_spline_setup(bPoseChannel *pchan, int rest, Mat4 result_array[MAX_BBONE_SUBDIV])
+void b_bone_spline_setup(bPoseChannel *pchan, const bool rest, Mat4 result_array[MAX_BBONE_SUBDIV])
{
bPoseChannel *next, *prev;
Bone *bone = pchan->bone;
@@ -821,8 +821,8 @@ static void pchan_b_bone_defmats(bPoseChannel *pchan, bPoseChanDeform *pdef_info
DualQuat *b_bone_dual_quats = NULL;
int a;
- b_bone_spline_setup(pchan, 0, b_bone);
- b_bone_spline_setup(pchan, 1, b_bone_rest);
+ b_bone_spline_setup(pchan, false, b_bone);
+ b_bone_spline_setup(pchan, true, b_bone_rest);
/* allocate b_bone matrices and dual quats */
b_bone_mats = MEM_mallocN((1 + bone->segments) * sizeof(Mat4), "BBone defmats");