(MESS) band aid fix for Tobal No. 1, some graphics issues remain [smf]

This commit is contained in:
smf- 2013-04-04 09:58:31 +00:00
parent 92b8c3739c
commit 0a2e7efba4

View File

@ -739,7 +739,7 @@ UINT32 psxgpu_device::update_screen(screen_device &screen, bitmap_ind16 &bitmap,
n_line = n_lines;
while( n_line > 0 )
{
draw_scanline16( bitmap, n_x + n_left, n_y + n_top, n_columns, p_p_vram[ n_y + n_displaystarty ] + n_x + n_displaystartx, NULL );
draw_scanline16( bitmap, n_x + n_left, n_y + n_top, n_columns, p_p_vram[ ( n_y + n_displaystarty ) & 1023 ] + n_x + n_displaystartx, NULL );
n_y++;
n_line--;
}