From 3f60d665bb888d7b50a4b41db30ca57daa786ca8 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 16 Jan 2015 02:21:35 +0500 Subject: [PATCH] Cycles: Fix stupid typo in the previous commit --- intern/cycles/bvh/bvh_build.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/cycles/bvh/bvh_build.cpp b/intern/cycles/bvh/bvh_build.cpp index 3f56be0c538..40f28432d05 100644 --- a/intern/cycles/bvh/bvh_build.cpp +++ b/intern/cycles/bvh/bvh_build.cpp @@ -343,7 +343,7 @@ bool BVHBuild::range_within_max_leaf_size(const BVHRange& range) } return (num_triangles < params.max_triangle_leaf_size) && - (num_curves < params.max_curve_leaf_size); + (num_curves < params.max_curve_leaf_size) && (num_motion_curves < params.max_curve_leaf_size); }