mirror of
https://github.com/holub/mame
synced 2025-05-29 00:53:09 +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);
|
||||
}
|
||||
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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user