From 2cc23333dc3e37125cc3bd8fa0fcbfbfde9da52b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 30 Apr 2014 16:26:30 +0000 Subject: [PATCH] fixed usage of uninitialized member in tms99xx_device (nw) --- src/emu/cpu/tms9900/tms9900.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/cpu/tms9900/tms9900.c b/src/emu/cpu/tms9900/tms9900.c index c39180a7eb7..9d1cc9a5cf7 100644 --- a/src/emu/cpu/tms9900/tms9900.c +++ b/src/emu/cpu/tms9900/tms9900.c @@ -220,6 +220,7 @@ void tms99xx_device::device_start() m_state_any = 0; PC = 0; + m_hold_state = false; // add the states for the debugger for (int i=0; i < 20; i++)