mirror of
https://github.com/holub/mame
synced 2025-06-24 05:17:04 +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)
|
||||
: device_t(mconfig, CASSETTE, "Cassette", tag, owner, clock, "cassette_image", __FILE__),
|
||||
device_image_interface(mconfig, *this)
|
||||
: device_t(mconfig, CASSETTE, "Cassette", tag, owner, clock, "cassette_image", __FILE__)
|
||||
, device_image_interface(mconfig, *this)
|
||||
, m_state(CASSETTE_STOPPED)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user