summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTobias <thm.frey@gmail.com>2019-05-19 02:14:30 +0200
committerGitHub <noreply@github.com>2019-05-19 02:14:30 +0200
commit5993133d5e3830f5b5ee166086bfe6d019a9b8c8 (patch)
treeafbb412e94fb38971e82988b1d3d6fc1b59c1c96 /src
parentHLE/IPC: HLEContext can memorize the client thread and use it for SleepClientThread (diff)
downloadyuzu-5993133d5e3830f5b5ee166086bfe6d019a9b8c8.tar
yuzu-5993133d5e3830f5b5ee166086bfe6d019a9b8c8.tar.gz
yuzu-5993133d5e3830f5b5ee166086bfe6d019a9b8c8.tar.bz2
yuzu-5993133d5e3830f5b5ee166086bfe6d019a9b8c8.tar.lz
yuzu-5993133d5e3830f5b5ee166086bfe6d019a9b8c8.tar.xz
yuzu-5993133d5e3830f5b5ee166086bfe6d019a9b8c8.tar.zst
yuzu-5993133d5e3830f5b5ee166086bfe6d019a9b8c8.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp
index 182f6f792..dd4eb0978 100644
--- a/src/core/hle/kernel/hle_ipc.cpp
+++ b/src/core/hle/kernel/hle_ipc.cpp
@@ -78,7 +78,7 @@ SharedPtr<WritableEvent> HLERequestContext::SleepClientThread(
HLERequestContext::HLERequestContext(SharedPtr<Kernel::ServerSession> server_session,
SharedPtr<Thread> thread)
- : server_session(std::move(server_session)), thread(thread) {
+ : server_session(std::move(server_session)), thread(std::move(thread)) {
cmd_buf[0] = 0;
}