fix bug in computedilated, was causing bad portraits in shikgam2

This commit is contained in:
davidhay 2009-05-09 00:29:11 +00:00
parent cb3ebf5bf8
commit 77f8cfea08

View File

@ -1483,7 +1483,7 @@ static void computedilated(void)
dilated1[b][a]=dilate1(a,b); dilated1[b][a]=dilate1(a,b);
} }
for (b=0;b <= 7;b++) for (b=0;b <= 7;b++)
for (a=0;a < 7;a++) for (a=0;a <= 7;a++)
dilatechose[(b << 3) + a]=3+(a < b ? a : b); dilatechose[(b << 3) + a]=3+(a < b ? a : b);
} }