From dcfdf0ea827c47d1068e70449795f305e943dfb0 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Sat, 30 Apr 2011 14:17:42 +0000 Subject: [PATCH] Fix for FMV colors in various PSX games, nw --- src/mame/video/psx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/video/psx.c b/src/mame/video/psx.c index 743b2cf0f46..c0d75eaac35 100644 --- a/src/mame/video/psx.c +++ b/src/mame/video/psx.c @@ -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;