Skip to content
Snippets Groups Projects
Unverified Commit da07faeb authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #879 from lioncash/audio

audout_u: Remove std::move in OpenAudioOutImpl()
parents 0a2b219a 1ced7bbe
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ void AudOutU::OpenAudioOutImpl(Kernel::HLERequestContext& ctx) {
// TODO(bunnei): Support more than one IAudioOut interface. When we add this, ListAudioOutsImpl
// will likely need to be updated as well.
ASSERT_MSG(!audio_out_interface, "Unimplemented");
audio_out_interface = std::make_shared<IAudioOut>(std::move(params), *audio_core);
audio_out_interface = std::make_shared<IAudioOut>(params, *audio_core);
IPC::ResponseBuilder rb{ctx, 6, 0, 1};
rb.Push(RESULT_SUCCESS);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment