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>2012-02-10 10:50:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-10 10:50:16 +0400
commit2dda20a96e6b5f54d195a23d661db23d4596b415 (patch)
tree3f657336cbc72c462da43a7fc857987db999773b /source/blender/editors/mesh/mesh_navmesh.c
parent3aeb7b3150053db9b10abc6ac3f65fbca020f35e (diff)
Style Edits only: use TRUE/FALSE rather then 1/0
Diffstat (limited to 'source/blender/editors/mesh/mesh_navmesh.c')
-rw-r--r--source/blender/editors/mesh/mesh_navmesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/mesh_navmesh.c b/source/blender/editors/mesh/mesh_navmesh.c
index 870350e18af..fc27f646170 100644
--- a/source/blender/editors/mesh/mesh_navmesh.c
+++ b/source/blender/editors/mesh/mesh_navmesh.c
@@ -487,7 +487,7 @@ static int navmesh_face_copy_exec(bContext *C, wmOperator *op)
BMEditMesh *em= ((Mesh *)obedit->data)->edit_btmesh;
/* do work here */
- BMFace *efa_act= BM_get_actFace(em->bm, 0);
+ BMFace *efa_act= BM_get_actFace(em->bm, FALSE);
if(efa_act) {
if(CustomData_has_layer(&em->bm->pdata, CD_RECAST)) {