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>2014-03-20 15:56:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-20 15:56:28 +0400
commit27e86ed8324c5cc72e58f61231018b6c77689f03 (patch)
tree2ce5eafe712cd230a268ffa7491a60eaf68c65d1 /source/blender/modifiers/intern/MOD_solidify.c
parent03d053da4cf36d17d59434da0d17252411356554 (diff)
Code cleanup: use bools
Diffstat (limited to 'source/blender/modifiers/intern/MOD_solidify.c')
-rw-r--r--source/blender/modifiers/intern/MOD_solidify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_solidify.c b/source/blender/modifiers/intern/MOD_solidify.c
index 83b53e208c0..721a77df29c 100644
--- a/source/blender/modifiers/intern/MOD_solidify.c
+++ b/source/blender/modifiers/intern/MOD_solidify.c
@@ -720,7 +720,7 @@ static DerivedMesh *applyModifier(
CustomData_copy_data(&dm->loopData, &result->loopData, k1, (int)(numLoops * 2 + j + 2), 1);
CustomData_copy_data(&dm->loopData, &result->loopData, k2, (int)(numLoops * 2 + j + 3), 1);
- if (flip == FALSE) {
+ if (flip == false) {
ml[j].v = ed->v1;
ml[j++].e = eidx;