From ec13217c5fa0d6dbb3900cfafae70e09cd56e287 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Thu, 24 Apr 2014 07:39:17 +0000 Subject: [PATCH] fixed usage of uninitialized member in unsp_device (nw) --- src/emu/cpu/unsp/unsp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/cpu/unsp/unsp.c b/src/emu/cpu/unsp/unsp.c index 558dd49bbe1..81ade130518 100644 --- a/src/emu/cpu/unsp/unsp.c +++ b/src/emu/cpu/unsp/unsp.c @@ -126,6 +126,7 @@ void unsp_device::device_start() m_sirq = 0; m_sb = 0; m_saved_sb = 0; + m_debugger_temp = 0; m_program = &space(AS_PROGRAM);