Cycles / Requested Features: Volume was missing in logging print.

This commit is contained in:
Thomas Dinges
2016-05-17 00:36:22 +02:00
parent b90cc984f7
commit 99d861169f

View File

@@ -56,6 +56,8 @@ std::ostream& operator <<(std::ostream &os,
<< string_from_bool(requested_features.use_camera_motion) << std::endl;
os << "Use Baking: "
<< string_from_bool(requested_features.use_baking) << std::endl;
os << "Use Volume: "
<< string_from_bool(requested_features.use_volume) << std::endl;
return os;
}