mirror of
https://github.com/holub/mame
synced 2025-05-24 23:05:32 +03:00
[SNES]: Fixed interlace mode gfxs when not in gfx modes 5/6
This commit is contained in:
parent
2e9ac77847
commit
84c4dbd3c4
@ -434,6 +434,9 @@ INLINE void snes_update_line( UINT8 screen, UINT8 color_depth, UINT8 hires, UINT
|
||||
if (snes_ppu.layer[layer].mosaic_enabled)
|
||||
curline -= (curline % (snes_ppu.mosaic_size + 1));
|
||||
|
||||
if((snes_ppu.interlace == 2) && !hires)
|
||||
curline/=2;
|
||||
|
||||
/* Find the size of the tiles (8x8 or 16x16) */
|
||||
tile_size = snes_ppu.layer[layer].tile_size;
|
||||
/* Find scroll info */
|
||||
|
Loading…
Reference in New Issue
Block a user