diff options
Diffstat (limited to 'src/devices/bus/iq151/iq151.h')
-rw-r--r-- | src/devices/bus/iq151/iq151.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/iq151/iq151.h b/src/devices/bus/iq151/iq151.h index ff3992c7585..5e74c029152 100644 --- a/src/devices/bus/iq151/iq151.h +++ b/src/devices/bus/iq151/iq151.h @@ -89,7 +89,7 @@ public: // construction/destruction template <typename T> iq151cart_slot_device(machine_config const &mconfig, char const *tag, device_t *owner, T &&opts, char const *dflt) - : iq151cart_slot_device(mconfig, tag, owner, 0) + : iq151cart_slot_device(mconfig, tag, owner) { option_reset(); opts(*this); @@ -97,7 +97,7 @@ public: set_fixed(false); } - iq151cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0); + iq151cart_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); virtual ~iq151cart_slot_device(); template <typename T> void set_screen_tag(T &&tag) { m_screen.set_tag(std::forward<T>(tag)); } |