Version 5.8 released. New overlays and collision detection improvements.

This commit is contained in:
Dave Bernazzani 2024-10-20 16:08:00 -04:00
parent 6e9062e09c
commit 5d2a568568
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -1258,7 +1258,7 @@ ITCM_CODE BOOL AY38900::mobsCollide(int mobNum0, int mobNum1)
// Since we've already determined a collision, we only need to check one of the MOB rectangles to see
// if it is off-screen as the other one would be likewise... In theory, we should check off bottom too.
// -----------------------------------------------------------------------------------------------------
if ((r0->y + (offsetYr0 + y) + verticalOffset) >= 0) return TRUE;
if ((r0->y + ((offsetYr0/2) + y) + verticalOffset) >= 0) return TRUE;
}
}