mirror of
https://github.com/holub/mame
synced 2025-05-22 05:38:52 +03:00
Fixed 04453: shackled: Garbled sprites
This commit is contained in:
parent
1fca6b29a8
commit
9a878722a2
@ -52,8 +52,9 @@ void deco_karnovsprites_device::draw_sprites( running_machine &machine, bitmap_t
|
|||||||
|
|
||||||
fx = spriteram[offs + 1];
|
fx = spriteram[offs + 1];
|
||||||
|
|
||||||
// the 8-bit implementation had this, why?
|
/* the 8-bit implementation had this.
|
||||||
//if ((fx & 0x1) == 0) continue;
|
illustrated by enemy projectile explosions in Shackled being left on screen. */
|
||||||
|
if ((fx & 0x1) == 0) continue;
|
||||||
|
|
||||||
extra = (fx & 0x10) ? 1 : 0;
|
extra = (fx & 0x10) ? 1 : 0;
|
||||||
fy = fx & 0x2;
|
fy = fx & 0x2;
|
||||||
|
Loading…
Reference in New Issue
Block a user