diff options
author | 2020-09-17 01:24:17 -0700 | |
---|---|---|
committer | 2020-09-17 01:24:17 -0700 | |
commit | 8d7d01caef380b119fbd8653fa5ad23e0d592564 (patch) | |
tree | 69ad747e9a42081425070a010fff86688bf67b54 /src/emu/disound.cpp | |
parent | dc0ede3c90717ed25de0695c555b861f06344f18 (diff) |
Revert "sound: Improved view interfaces to match usage patterns"
This reverts commit dc0ede3c90717ed25de0695c555b861f06344f18.
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 1e7be43b32f..29d8b4e13b5 100644 --- a/src/emu/disound.cpp +++ b/src/emu/disound.cpp @@ -512,9 +512,9 @@ void device_mixer_interface::sound_stream_update(sound_stream &stream, std::vect int outputnum = m_outputmap[inputnum]; auto &output = outputs[outputnum]; if (!m_output_clear[outputnum]) - output.copy_indexed(0, input); + output.copy(input); else - output.add_indexed(0, input); + output.add(input); m_output_clear[outputnum] = true; } @@ -522,5 +522,5 @@ void device_mixer_interface::sound_stream_update(sound_stream &stream, std::vect // clear anything unused for (int outputnum = 0; outputnum < m_outputs; outputnum++) if (!m_output_clear[outputnum]) - outputs[outputnum].fill_indexed(0, 0); + outputs[outputnum].fill(0); } |