Minor bug-fix : the generateLegacySharpCornerPatches option was initialized incorrectly in the new PatchBuilder class

This commit is contained in:
manuelk 2017-05-25 11:36:47 -07:00
parent 19a9241579
commit 30e431a3f7

View File

@ -154,7 +154,7 @@ PatchBuilder::PatchBuilder(TopologyRefiner const & refiner,
bool useInfSharpPatch, bool generateLegacySharpCornerPatches) : bool useInfSharpPatch, bool generateLegacySharpCornerPatches) :
_refiner(refiner), _refiner(refiner),
_useInfSharpPatch(useInfSharpPatch), _useInfSharpPatch(useInfSharpPatch),
_generateLegacySharpCornerPatches(_generateLegacySharpCornerPatches) { _generateLegacySharpCornerPatches(generateLegacySharpCornerPatches) {
// If client-code does not select specific channels, default to all // If client-code does not select specific channels, default to all
// the channels in the refiner. // the channels in the refiner.