From db10b0d699b276ced3a977bcaf096ed71a59c4d3 Mon Sep 17 00:00:00 2001 From: smf- Date: Wed, 25 May 2011 10:04:40 +0000 Subject: [PATCH] fixed display problems due to an uninitialized variable. --- src/emu/video/psx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/video/psx.c b/src/emu/video/psx.c index 5e27a4383f6..4c0f38f6538 100644 --- a/src/emu/video/psx.c +++ b/src/emu/video/psx.c @@ -483,6 +483,7 @@ void psxgpu_device::psx_gpu_init( int n_gputype ) n_gpu_buffer_offset = 0; n_lightgun_x = 0; n_lightgun_y = 0; + b_reverseflag = 0; n_vram_size = width * height; p_vram = auto_alloc_array_clear( machine(), UINT16, n_vram_size );