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-08-14 22:43:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-14 22:43:15 +0400
commit27a8487070b37e6243608571b623e0c5fa279ced (patch)
treea3b960c2e63e600a71369b0b77827afabbe77f22 /source/blender/modifiers/intern/MOD_displace.c
parent8b941a80c94e1123f060da8e5406c7ac36952b5a (diff)
style cleanup: pep8 & unfinished comment from own commit.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_displace.c')
-rw-r--r--source/blender/modifiers/intern/MOD_displace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_displace.c b/source/blender/modifiers/intern/MOD_displace.c
index 41ac654fc41..21cbc2b766c 100644
--- a/source/blender/modifiers/intern/MOD_displace.c
+++ b/source/blender/modifiers/intern/MOD_displace.c
@@ -175,7 +175,7 @@ static void displaceModifier_do(
int defgrp_index;
float (*tex_co)[3];
float weight = 1.0f; /* init value unused but some compilers may complain */
- const float delta_fixed = 1.0f - dmd->midlevel; /* when no texture is used, we*/
+ const float delta_fixed = 1.0f - dmd->midlevel; /* when no texture is used, we fallback to white */
if (!dmd->texture && dmd->direction == MOD_DISP_DIR_RGB_XYZ) return;
if (dmd->strength == 0.0f) return;