From 60ec426dbe23a2862d30ed4f850bed7722cda3a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Fri, 22 Feb 2013 20:53:05 +0000 Subject: [PATCH] (MESS) fixed uninitialized member in src/mess/machine/nextmo.c (nw) --- src/mess/machine/nextmo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mess/machine/nextmo.c b/src/mess/machine/nextmo.c index a64d0983d05..e2b536ad570 100644 --- a/src/mess/machine/nextmo.c +++ b/src/mess/machine/nextmo.c @@ -18,6 +18,7 @@ ADDRESS_MAP_END nextmo_device::nextmo_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, NEXTMO, "NeXT Magneto-optical drive", tag, owner, clock) + , r4(0) { }