diff options
Diffstat (limited to 'src/mame/audio/special.cpp')
-rw-r--r-- | src/mame/audio/special.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/audio/special.cpp b/src/mame/audio/special.cpp index 6b827a2d2c8..f81e203bd9a 100644 --- a/src/mame/audio/special.cpp +++ b/src/mame/audio/special.cpp @@ -24,7 +24,7 @@ const device_type SPECIMX_SND = &device_creator<specimx_sound_device>; // specimx_sound_device - constructor //------------------------------------------------- -specimx_sound_device::specimx_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +specimx_sound_device::specimx_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, SPECIMX_SND, "Specialist MX Audio Custom", tag, owner, clock, "specimx_sound", __FILE__), device_sound_interface(mconfig, *this), m_mixer_channel(nullptr) @@ -50,9 +50,9 @@ void specimx_sound_device::device_start() void specimx_sound_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) { - INT16 channel_0_signal; - INT16 channel_1_signal; - INT16 channel_2_signal; + int16_t channel_0_signal; + int16_t channel_1_signal; + int16_t channel_2_signal; stream_sample_t *sample_left = outputs[0]; |