mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
a surprise for sirscotty!
fixed collision detection
This commit is contained in:
parent
083463dab8
commit
e0fda7197b
@ -319,7 +319,7 @@ void bking_state::screen_eof_bking(screen_device &screen, bool state)
|
||||
|
||||
for (x = rect.min_x; x <= rect.max_x; x++)
|
||||
{
|
||||
if (MASK[p0[x] & 7] && p1[x])
|
||||
if (MASK[p0[x] & 7] && p1[x] & 1)
|
||||
{
|
||||
int col = (xld + x) / 8 + 1;
|
||||
int row = (yld + y) / 8 + 0;
|
||||
|
Loading…
Reference in New Issue
Block a user