PIPE3_Part2

This commit is contained in:
1 2017-10-04 10:53:18 +01:00 committed by citra
parent 9968c87231
commit 0de94f3631

View File

@ -160,6 +160,9 @@ void PipeWrite(DspPipe pipe_number, const std::vector<u8>& buffer) {
}
return;
case DspPipe::Binary:
std::copy(buffer.begin(), buffer.end(), std::back_inserter(pipe_data[static_cast<size_t>(DspPipe::Binary)]));
return;
}
default:
LOG_CRITICAL(Audio_DSP, "pipe_number = %zu unimplemented",