mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
fixed P2 gun reload in Lethal Enforcers II.
This commit is contained in:
parent
72a8244c53
commit
6896a9c603
@ -888,6 +888,7 @@ static READ32_HANDLER( le2_gun_V_r )
|
|||||||
|
|
||||||
// make "off the bottom" reload too
|
// make "off the bottom" reload too
|
||||||
if (p1y >= 0xdf) p1y = 0;
|
if (p1y >= 0xdf) p1y = 0;
|
||||||
|
if (p2y >= 0xdf) p2y = 0;
|
||||||
|
|
||||||
return (p1y<<16)|p2y;
|
return (p1y<<16)|p2y;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user