diff options
Diffstat (limited to 'src/devices/machine/spg110_video.h')
-rw-r--r-- | src/devices/machine/spg110_video.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/spg110_video.h b/src/devices/machine/spg110_video.h index 6f8e0db0b5c..a39f02cba01 100644 --- a/src/devices/machine/spg110_video.h +++ b/src/devices/machine/spg110_video.h @@ -16,11 +16,11 @@ class spg110_video_device : public device_t, public device_memory_interface { public: - spg110_video_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); - spg110_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + spg110_video_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); + spg110_video_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); template <typename T, typename U> - spg110_video_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&cpu_tag, U &&screen_tag) + spg110_video_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, T &&cpu_tag, U &&screen_tag) : spg110_video_device(mconfig, tag, owner, clock) { m_cpu.set_tag(std::forward<T>(cpu_tag)); |