Skip to content

Commit

Permalink
bug 109074 - copy paste error in NoiseChisel
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMarkelov committed Jul 9, 2016
1 parent 4e2e9cb commit 29e3269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/noisechisel/binary.c
Expand Up @@ -318,7 +318,7 @@ dilate0_erode1_8con(unsigned char *byt, size_t nr, size_t nc,
&& (byt[ind-1]==f || byt[ind+1]==f
|| byt[ind+nc]==f || byt[ind-nc]==f
|| byt[ind-1-nc]==f || byt[ind+1+nc]==f
|| byt[ind-1+nc]==f || byt[ind+1+nc]==f) )
|| byt[ind-1+nc]==f || byt[ind+1-nc]==f) )
byt[ind]=BINARYTMP;
}

Expand Down

0 comments on commit 29e3269

Please sign in to comment.