diff options
author | 2012-12-08 14:30:37 +0000 | |
---|---|---|
committer | 2012-12-08 14:30:37 +0000 | |
commit | acf07c42202a1b6cb58c013d854063f3cbbbae81 (patch) | |
tree | bd59962592d9a22a47ce11403d54db2842d50020 /src/mess/machine/fd2000.c | |
parent | 8d30bc316ca59fd2e4483127877ed06b210f9899 (diff) |
fix for fd4000 device (no whatsnew)
Diffstat (limited to 'src/mess/machine/fd2000.c')
-rw-r--r-- | src/mess/machine/fd2000.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/machine/fd2000.c b/src/mess/machine/fd2000.c index 8c075e69865..99bddef8bcc 100644 --- a/src/mess/machine/fd2000.c +++ b/src/mess/machine/fd2000.c @@ -226,7 +226,8 @@ fd2000_device::fd2000_device(const machine_config &mconfig, device_type type, co : device_t(mconfig, type, name, tag, owner, clock), device_cbm_iec_interface(mconfig, *this), m_maincpu(*this, M6502_TAG), - m_floppy0(*this, DP8473_TAG":0") + m_floppy0(*this, DP8473_TAG":0"), + m_variant(variant) { } |