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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-11 00:54:08 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-11 00:54:08 +0400
commitc03e638cf310cde57ede10d3d9c90aecce007b15 (patch)
tree667eb28691fa6d99d8d242e5402fccc572056b14 /source/blender/bmesh/operators/bmo_subdivide.c
parent2213b92e4818f4308adc49b9dafda0986127f270 (diff)
Fix msvc compile error with subdivide use_smooth_even option.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_subdivide.c')
-rw-r--r--source/blender/bmesh/operators/bmo_subdivide.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_subdivide.c b/source/blender/bmesh/operators/bmo_subdivide.c
index 7fbc6f48350..96771e00291 100644
--- a/source/blender/bmesh/operators/bmo_subdivide.c
+++ b/source/blender/bmesh/operators/bmo_subdivide.c
@@ -856,7 +856,7 @@ void bmo_subdivide_edges_exec(BMesh *bm, BMOperator *op)
params.fractal = fractal;
params.along_normal = along_normal;
params.use_smooth = (smooth != 0.0f);
- params.use_smooth_even = BMO_slot_get(op->slots_in, "use_smooth_even");
+ params.use_smooth_even = BMO_slot_bool_get(op->slots_in, "use_smooth_even");
params.use_fractal = (fractal != 0.0f);
params.use_sphere = use_sphere;