(MESS) fixed uninitialized member in src/mess/machine/nextmo.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-22 20:53:05 +00:00
parent 05b8429057
commit 60ec426dbe

View File

@ -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)
{
}