Bug fix: masked search escape

This commit is contained in:
Hrvoje Jasak 2015-08-18 14:08:10 +01:00
parent 9686a9bc82
commit 88327de814

View file

@ -145,8 +145,11 @@ void GGIInterpolation<MasterPatch, SlavePatch>::maskedBridge
{
// Gone beyond my index: my face is not present in the mask
// Go one back and check for next uncovered face
if (maskAddrI > 0)
{
maskAddrI--;
}
maskAddrI--;
break;
}
}