compressor: Remove unneeded casts in ApplyCompressorEffect

Same behavior, but also silences a -Wcast-qual warning, since the second
cast casts away const.
This commit is contained in:
Lioncash 2022-09-13 13:28:50 -04:00
parent 1be456db83
commit bdb866af1d

View file

@ -103,8 +103,7 @@ static void ApplyCompressorEffect(CompressorInfo::ParameterVersion2& params,
} else {
for (s16 channel = 0; channel < params.channel_count; channel++) {
if (params.inputs[channel] != params.outputs[channel]) {
std::memcpy((char*)output_buffers[channel].data(),
(char*)input_buffers[channel].data(),
std::memcpy(output_buffers[channel].data(), input_buffers[channel].data(),
output_buffers[channel].size_bytes());
}
}