Bug fix: masked search escape
This commit is contained in:
parent
9686a9bc82
commit
88327de814
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue