diff options
Diffstat (limited to 'src/mame/audio/phoenix.cpp')
-rw-r--r-- | src/mame/audio/phoenix.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/audio/phoenix.cpp b/src/mame/audio/phoenix.cpp index 3bcd72661ea..28ec0574f69 100644 --- a/src/mame/audio/phoenix.cpp +++ b/src/mame/audio/phoenix.cpp @@ -50,7 +50,7 @@ const device_type PHOENIX = &device_creator<phoenix_sound_device>; -phoenix_sound_device::phoenix_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +phoenix_sound_device::phoenix_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, PHOENIX, "Phoenix Audio Custom", tag, owner, clock, "phoenix_sound", __FILE__), device_sound_interface(mconfig, *this) { @@ -73,7 +73,7 @@ void phoenix_sound_device::device_config_complete() void phoenix_sound_device::device_start() { int i, j; - UINT32 shiftreg; + uint32_t shiftreg; m_sound_latch_a = 0; memset(&m_c24_state, 0, sizeof(m_c24_state)); @@ -83,12 +83,12 @@ void phoenix_sound_device::device_start() m_discrete = machine().device<discrete_device>("discrete"); m_tms = machine().device<tms36xx_device>("tms"); - m_poly18 = std::make_unique<UINT32[]>(1ul << (18-5)); + m_poly18 = std::make_unique<uint32_t[]>(1ul << (18-5)); shiftreg = 0; for( i = 0; i < (1ul << (18-5)); i++ ) { - UINT32 bits = 0; + uint32_t bits = 0; for( j = 0; j < 32; j++ ) { bits = (bits >> 1) | (shiftreg << 31); |