aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-31 16:49:56 -0700
committerGitHub <noreply@github.com>2018-07-31 16:49:56 -0700
commitda07faebfecad42c1da2941f350f606130e6c4b9 (patch)
tree6bb937697401ea97e8836b8f672552bff3fde531 /src
parent0a2b219a31b85da3e55b37a040b7e03cb1ccfd3e (diff)
parent1ced7bbea5461084a41e483e6d94e9e4645e5d9f (diff)
Merge pull request #879 from lioncash/audio
audout_u: Remove std::move in OpenAudioOutImpl()
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/audio/audout_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp
index ab37c2a694..b317027b62 100644
--- a/src/core/hle/service/audio/audout_u.cpp
+++ b/src/core/hle/service/audio/audout_u.cpp
@@ -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);