From ffb1fe2872c72d52b3fb030b94ef14c3949a7aab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Sat, 23 Feb 2013 08:50:01 +0000 Subject: [PATCH] fixed uninitialized member in src/emu/cpu/psx/psx.c (nw) --- src/emu/cpu/psx/psx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/cpu/psx/psx.c b/src/emu/cpu/psx/psx.c index e79d3cbc023..910e3099f93 100644 --- a/src/emu/cpu/psx/psx.c +++ b/src/emu/cpu/psx/psx.c @@ -1796,6 +1796,7 @@ void psxcpu_device::device_reset() m_delayr = 0; m_delayv = 0; m_berr = 0; + m_biu = 0; m_multiplier_operation = MULTIPLIER_OPERATION_IDLE;