From 3c0aadc62de3f9e2aa721ad2b82e4b4f71beded8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Fri, 22 Feb 2013 21:48:32 +0000 Subject: [PATCH] (MESS) fixed uninitialized members in src/mess/machine/cuda.c (nw) --- src/mess/machine/cuda.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mess/machine/cuda.c b/src/mess/machine/cuda.c index 7e84dccd80e..f978c051707 100644 --- a/src/mess/machine/cuda.c +++ b/src/mess/machine/cuda.c @@ -466,6 +466,8 @@ void cuda_device::device_reset() timer_ctrl = 0; timer_counter = 32; last_adb_time = m_maincpu->total_cycles(); + onesec = 0; + last_adb = 0; } void cuda_device::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)