diff options
Diffstat (limited to 'src/devices/sound/2612intf.h')
-rw-r--r-- | src/devices/sound/2612intf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/2612intf.h b/src/devices/sound/2612intf.h index 7a9751ab9d3..f7fa71ed6ae 100644 --- a/src/devices/sound/2612intf.h +++ b/src/devices/sound/2612intf.h @@ -16,8 +16,8 @@ class ym2612_device : public device_t, public device_sound_interface { public: - ym2612_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - ym2612_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source); + ym2612_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + ym2612_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source); // static configuration helpers template<class _Object> static devcb_base &set_irq_handler(device_t &device, _Object object) { return downcast<ym2612_device &>(device).m_irq_handler.set_callback(object); } @@ -58,7 +58,7 @@ extern const device_type YM2612; class ym3438_device : public ym2612_device { public: - ym3438_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + ym3438_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); }; extern const device_type YM3438; |