diff options
author | 2012-05-15 06:56:17 +0000 | |
---|---|---|
committer | 2012-05-15 06:56:17 +0000 | |
commit | 07ee4afaba2d35b7089aa41f3f9495cf610b6a5d (patch) | |
tree | c2352de814f041f06ae990a5e43913bf99f96313 /src/emu/imagedev/snapquik.c | |
parent | 640d7789ac27b18fdc98466a83524b2f24c9cc24 (diff) |
objdump doesn't work with VS binaries, so do not run it by Firewave (no whatsnew)
fixed uninitialized field in ioport_field.m_chars (fixes stack
corruption with three PORT_CHAR definitions) / added some sanity
checks for PORT_CHAR adding and lookup by Firewave
Intel 28F320J3D flash support by Lukasz Markowski
snapquik.c fixed uninitialized variable that causes random assertion
failure by Sandro Ronco
Diffstat (limited to 'src/emu/imagedev/snapquik.c')
-rw-r--r-- | src/emu/imagedev/snapquik.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/emu/imagedev/snapquik.c b/src/emu/imagedev/snapquik.c index 44635507dd2..da87c282611 100644 --- a/src/emu/imagedev/snapquik.c +++ b/src/emu/imagedev/snapquik.c @@ -18,13 +18,15 @@ const device_type SNAPSHOT = &device_creator<snapshot_image_device>; snapshot_image_device::snapshot_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, SNAPSHOT, "Snapshot", tag, owner, clock), - device_image_interface(mconfig, *this) + device_image_interface(mconfig, *this), + m_delay_attoseconds(0) { } snapshot_image_device::snapshot_image_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_image_interface(mconfig, *this) + device_image_interface(mconfig, *this), + m_delay_attoseconds(0) { } //------------------------------------------------- |