mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
Fix for FMV colors in various PSX games, nw
This commit is contained in:
parent
43edd7c59f
commit
dcfdf0ea82
@ -909,7 +909,8 @@ SCREEN_UPDATE( psx )
|
||||
n_line = n_lines;
|
||||
while( n_line > 0 )
|
||||
{
|
||||
UINT16 *p_n_src = p_psxgpu->p_p_vram[ n_y + p_psxgpu->n_displaystarty ] + n_x + n_displaystartx;
|
||||
//UINT16 *p_n_src = p_psxgpu->p_p_vram[ n_y + p_psxgpu->n_displaystarty ] + n_x + n_displaystartx;
|
||||
UINT16 *p_n_src = p_psxgpu->p_p_vram[ n_y + p_psxgpu->n_displaystarty ] + n_displaystartx;
|
||||
UINT16 *p_n_dest = BITMAP_ADDR16(bitmap, n_y + n_top, n_x + n_left);
|
||||
|
||||
n_column = n_columns;
|
||||
|
Loading…
Reference in New Issue
Block a user