mirror of
https://github.com/holub/mame
synced 2025-07-01 16:19:38 +03:00
fix bug in computedilated, was causing bad portraits in shikgam2
This commit is contained in:
parent
cb3ebf5bf8
commit
77f8cfea08
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user