summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/tvc/tvc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/tvc/tvc.h')
-rw-r--r--src/devices/bus/tvc/tvc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/tvc/tvc.h b/src/devices/bus/tvc/tvc.h
index bf184967685..38adeaa9913 100644
--- a/src/devices/bus/tvc/tvc.h
+++ b/src/devices/bus/tvc/tvc.h
@@ -92,7 +92,7 @@ public:
// construction/destruction
template <typename T>
tvcexp_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, T &&opts, const char *dflt)
- : tvcexp_slot_device(mconfig, tag, owner, 0)
+ : tvcexp_slot_device(mconfig, tag, owner)
{
option_reset();
opts(*this);
@@ -100,7 +100,7 @@ public:
set_fixed(false);
}
- tvcexp_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
+ tvcexp_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
virtual ~tvcexp_slot_device();
auto out_irq_callback() { return m_out_irq_cb.bind(); }