From ddb290d5f615019c33c42b8d94e5a5254cabcf33 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 22 Oct 2016 13:13:17 +0200 Subject: NOTICE (TYPE NAME CONSOLIDATION) Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8 --- src/devices/sound/2610intf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/devices/sound/2610intf.h') diff --git a/src/devices/sound/2610intf.h b/src/devices/sound/2610intf.h index b41843053ab..94376220586 100644 --- a/src/devices/sound/2610intf.h +++ b/src/devices/sound/2610intf.h @@ -16,8 +16,8 @@ void ym2610_update_request(void *param); class ym2610_device : public ay8910_device { public: - ym2610_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - ym2610_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); + ym2610_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + ym2610_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 static devcb_base &set_irq_handler(device_t &device, _Object object) { return downcast(device).m_irq_handler.set_callback(object); } @@ -58,7 +58,7 @@ extern const device_type YM2610; class ym2610b_device : public ym2610_device { public: - ym2610b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + ym2610b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void stream_generate(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; }; -- cgit v1.2.3-70-g09d2