mirror of
https://github.com/holub/mame
synced 2025-06-27 06:39:03 +03:00
fixed uninitialized member usage in cassette_image_device (nw)
This commit is contained in:
parent
c099881e64
commit
23425a90aa
@ -37,8 +37,9 @@ const device_type CASSETTE = &device_creator<cassette_image_device>;
|
|||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
|
||||||
cassette_image_device::cassette_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
cassette_image_device::cassette_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||||
: device_t(mconfig, CASSETTE, "Cassette", tag, owner, clock, "cassette_image", __FILE__),
|
: device_t(mconfig, CASSETTE, "Cassette", tag, owner, clock, "cassette_image", __FILE__)
|
||||||
device_image_interface(mconfig, *this)
|
, device_image_interface(mconfig, *this)
|
||||||
|
, m_state(CASSETTE_STOPPED)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user