fixed uninitialized member in src/emu/cpu/psx/siodev.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-23 08:50:19 +00:00
parent ffb1fe2872
commit 5f5b0615ce

View File

@ -2,7 +2,8 @@
#include "siodev.h"
psxsiodev_device::psxsiodev_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) :
device_t(mconfig, type, name, tag, owner, clock)
device_t(mconfig, type, name, tag, owner, clock),
m_dataout(0)
{
}