Previous 199869 Revisions Next

r17395 Wednesday 22nd August, 2012 at 14:03:07 UTC by Angelo Salese
(MESS) Fixed vertical sprite wrap-around in SNES driver [Angelo Salese]
[src/mame/video]snes.c

trunk/src/mame/video/snes.c
r17394r17395
10131013      pal = oam_spritelist[active_sprite].pal;
10141014
10151015      /* Adjust y, if past maximum position (for sprites which overlap between top & bottom) */
1016      if (y >= 256 * snes_ppu.interlace)
1017         y -= 256 * snes_ppu.interlace;
1016      if (y >= (0x100 - 16) * snes_ppu.interlace)
1017         y -= (0x100) * snes_ppu.interlace;
10181018
10191019      if (curline >= y && curline < (y + (height << 3)))
10201020      {

Previous 199869 Revisions Next


© 1997-2024 The MAME Team