diff options
Diffstat (limited to 'src/devices/video/m50458.h')
-rw-r--r-- | src/devices/video/m50458.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/m50458.h b/src/devices/video/m50458.h index fd0eed36e22..2261a1fcbdf 100644 --- a/src/devices/video/m50458.h +++ b/src/devices/video/m50458.h @@ -25,13 +25,13 @@ class m50458_device : public device_t, public: // construction/destruction template <typename T> - m50458_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&screen_tag) + m50458_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, T &&screen_tag) : m50458_device(mconfig, tag, owner, clock) { set_screen(std::forward<T>(screen_tag)); } - m50458_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + m50458_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // I/O operations DECLARE_WRITE_LINE_MEMBER( write_bit ); |