summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/channelf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/channelf.cpp')
-rw-r--r--src/mame/audio/channelf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/channelf.cpp b/src/mame/audio/channelf.cpp
index 2cf03d70aa0..21d416c14f2 100644
--- a/src/mame/audio/channelf.cpp
+++ b/src/mame/audio/channelf.cpp
@@ -8,7 +8,7 @@
const device_type CHANNELF_SOUND = &device_creator<channelf_sound_device>;
-channelf_sound_device::channelf_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+channelf_sound_device::channelf_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, CHANNELF_SOUND, "Channel F Sound", tag, owner, clock, "channelf_sound", __FILE__),
device_sound_interface(mconfig, *this),
m_channel(nullptr),
@@ -82,7 +82,7 @@ void channelf_sound_device::device_start()
void channelf_sound_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples)
{
- UINT32 mask = 0, target = 0;
+ uint32_t mask = 0, target = 0;
stream_sample_t *buffer = outputs[0];
stream_sample_t *sample = buffer;