fixed P2 gun reload in Lethal Enforcers II.

This commit is contained in:
Derrick Renaud 2009-04-22 23:12:26 +00:00
parent 72a8244c53
commit 6896a9c603

View File

@ -888,6 +888,7 @@ static READ32_HANDLER( le2_gun_V_r )
// make "off the bottom" reload too
if (p1y >= 0xdf) p1y = 0;
if (p2y >= 0xdf) p2y = 0;
return (p1y<<16)|p2y;
}