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:
authorSv. Lockal <lockalsash@gmail.com>2012-01-25 14:10:15 +0400
committerSv. Lockal <lockalsash@gmail.com>2012-01-25 14:10:15 +0400
commitb8586f4ec347430b2bf00494ab885bd787f26869 (patch)
tree128f17aada2c0696ee6d3f1ddaa37663cdfefc7b /source/blender/editors/armature/reeb.c
parent128741a02e4c7fb9d0c6872fe1ae690c9de7c63d (diff)
Fix typo for sharpen graph post-processing so fac1+fac2+fac3 always equals 1.0
Diffstat (limited to 'source/blender/editors/armature/reeb.c')
-rw-r--r--source/blender/editors/armature/reeb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/armature/reeb.c b/source/blender/editors/armature/reeb.c
index fe9eb6dcd01..bcdda8e9eb1 100644
--- a/source/blender/editors/armature/reeb.c
+++ b/source/blender/editors/armature/reeb.c
@@ -1174,7 +1174,7 @@ void postprocessGraph(ReebGraph *rg, char mode)
fac2 = 0.5f;
break;
case SKGEN_SHARPEN:
- fac1 = fac2 = -0.25f;
+ fac1 = fac3 = -0.25f;
fac2 = 1.5f;
break;
default: