diff options
author | 2020-09-17 01:24:17 -0700 | |
---|---|---|
committer | 2020-09-17 01:24:17 -0700 | |
commit | 8d7d01caef380b119fbd8653fa5ad23e0d592564 (patch) | |
tree | 69ad747e9a42081425070a010fff86688bf67b54 /src/devices/machine/netlist.h | |
parent | dc0ede3c90717ed25de0695c555b861f06344f18 (diff) |
Revert "sound: Improved view interfaces to match usage patterns"
This reverts commit dc0ede3c90717ed25de0695c555b861f06344f18.
Diffstat (limited to 'src/devices/machine/netlist.h')
-rw-r--r-- | src/devices/machine/netlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/netlist.h b/src/devices/machine/netlist.h index 269f98e415c..8b9e156adba 100644 --- a/src/devices/machine/netlist.h +++ b/src/devices/machine/netlist.h @@ -241,7 +241,7 @@ public: netlist_mame_sound_input_buffer(read_stream_view const &src) : read_stream_view(src) { } - stream_buffer::sample_t operator[](std::size_t index) { return get_indexed(index); } + stream_buffer::sample_t operator[](std::size_t index) { return get(index); } }; // ---------------------------------------------------------------------------------------- |