diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/emu/disound.cpp | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
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
Diffstat (limited to 'src/emu/disound.cpp')
-rw-r--r-- | src/emu/disound.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/disound.cpp b/src/emu/disound.cpp index 52087560191..1450d1a56c4 100644 --- a/src/emu/disound.cpp +++ b/src/emu/disound.cpp @@ -42,7 +42,7 @@ device_sound_interface::~device_sound_interface() // a new route to the device //------------------------------------------------- -void device_sound_interface::static_add_route(device_t &device, UINT32 output, const char *target, double gain, UINT32 input, UINT32 mixoutput) +void device_sound_interface::static_add_route(device_t &device, uint32_t output, const char *target, double gain, uint32_t input, uint32_t mixoutput) { // find our sound interface device_sound_interface *sound; @@ -357,7 +357,7 @@ void device_sound_interface::interface_pre_reset() // sound_route - constructor //------------------------------------------------- -device_sound_interface::sound_route::sound_route(int output, int input, float gain, const char *target, UINT32 mixoutput) +device_sound_interface::sound_route::sound_route(int output, int input, float gain, const char *target, uint32_t mixoutput) : m_output(output), m_input(input), m_mixoutput(mixoutput), @@ -461,7 +461,7 @@ void device_mixer_interface::sound_stream_update(sound_stream &stream, stream_sa memset(outputs[output], 0, samples * sizeof(outputs[0][0])); // loop over samples - const UINT8 *outmap = &m_outputmap[0]; + const uint8_t *outmap = &m_outputmap[0]; for (int pos = 0; pos < samples; pos++) { // for each input, add it to the appropriate output |