Cycles: Fix mistake in PathRayFlag, one value was used twice.

This commit is contained in:
Thomas Dinges 2014-02-27 20:41:36 +01:00
parent 44d79c5ff8
commit 74ae900c67

@ -234,7 +234,7 @@ enum PathRayFlag {
PATH_RAY_DIFFUSE_ANCESTOR = 2048,
PATH_RAY_GLOSSY_ANCESTOR = 4096,
PATH_RAY_BSSRDF_ANCESTOR = 8192,
PATH_RAY_SINGLE_PASS_DONE = 8192,
PATH_RAY_SINGLE_PASS_DONE = 16384,
/* this gives collisions with localview bits
* see: blender_util.h, grr - Campbell */