Fix msvc compile error with subdivide use_smooth_even option.

This commit is contained in:
Brecht Van Lommel 2013-06-10 20:54:08 +00:00
parent 2213b92e48
commit c03e638cf3

@ -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;