summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/floppy.h
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-08-09 20:47:17 +0200
committer mooglyguy <therealmogminer@gmail.com>2018-08-09 20:47:28 +0200
commit00e169f11f2186ae86062d76353872d1128c7a16 (patch)
treeca9ff0c380e29ae8f278ae4ebcc07a984641eb31 /src/devices/imagedev/floppy.h
parent6cfd636c604fc012eac8b19a4ff56b5e35e77693 (diff)
-via6522: Removed MCFG acessors, nw
Diffstat (limited to 'src/devices/imagedev/floppy.h')
-rw-r--r--src/devices/imagedev/floppy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/imagedev/floppy.h b/src/devices/imagedev/floppy.h
index c486018defd..d06ce318e27 100644
--- a/src/devices/imagedev/floppy.h
+++ b/src/devices/imagedev/floppy.h
@@ -317,13 +317,13 @@ class floppy_connector: public device_t,
{
public:
template <typename T>
- floppy_connector(const machine_config &mconfig, const char *tag, device_t *owner, T &&opts, const char *dflt, const floppy_format_type *formats)
+ floppy_connector(const machine_config &mconfig, const char *tag, device_t *owner, T &&opts, const char *dflt, const floppy_format_type *formats, bool fixed = false)
: floppy_connector(mconfig, tag, owner, 0)
{
option_reset();
opts(*this);
set_default_option(dflt);
- set_fixed(false);
+ set_fixed(fixed);
set_formats(formats);
}
floppy_connector(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);