diff options
Diffstat (limited to 'src/devices/machine/adc1038.h')
-rw-r--r-- | src/devices/machine/adc1038.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/adc1038.h b/src/devices/machine/adc1038.h index d4ee5362fd0..d11210bf3fb 100644 --- a/src/devices/machine/adc1038.h +++ b/src/devices/machine/adc1038.h @@ -29,7 +29,7 @@ class adc1038_device : public device_t public: typedef device_delegate<int (int input)> input_delegate; - adc1038_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + adc1038_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); template <typename... T> void set_input_callback(T &&... args) { m_input_cb.set(std::forward<T>(args)...); } |