Skip to content

Commit

Permalink
Sprite fix for Contra / Gryzor (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
arcadez2003 authored Oct 16, 2023
1 parent 5f301c8 commit 496e74d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vidhrdw/contra.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,9 @@ WRITE8_HANDLER( contra_K007121_ctrl_1_w )
if (offset == 3)
{
if ((data&0x8)==0)
memcpy(private_spriteram_2,spriteram+0x2800,0x800);
memcpy(private_spriteram_2,spriteram_2+0x800,0x800);
else
memcpy(private_spriteram_2,spriteram+0x2000,0x800);
memcpy(private_spriteram_2,spriteram_2+0x000,0x800);
}
if (offset == 6)
{
Expand Down

0 comments on commit 496e74d

Please sign in to comment.