mirror of
https://github.com/holub/mame
synced 2025-06-04 11:56:28 +03:00
fixed uninitialized member in src/emu/cpu/psx/siodev.c (nw)
This commit is contained in:
parent
ffb1fe2872
commit
5f5b0615ce
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user