summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/client_session.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-03 03:02:10 +0200
committerbunnei <bunneidev@gmail.com>2021-05-06 01:40:50 +0200
commit34bed1ab41a296f8ccccc47d7c06ab03de2018b5 (patch)
tree68ef2cba05f74fba14ec8c0e80b492a5fa587da5 /src/core/hle/kernel/client_session.cpp
parentcore: Defer CoreTiming initialization. (diff)
downloadyuzu-34bed1ab41a296f8ccccc47d7c06ab03de2018b5.tar
yuzu-34bed1ab41a296f8ccccc47d7c06ab03de2018b5.tar.gz
yuzu-34bed1ab41a296f8ccccc47d7c06ab03de2018b5.tar.bz2
yuzu-34bed1ab41a296f8ccccc47d7c06ab03de2018b5.tar.lz
yuzu-34bed1ab41a296f8ccccc47d7c06ab03de2018b5.tar.xz
yuzu-34bed1ab41a296f8ccccc47d7c06ab03de2018b5.tar.zst
yuzu-34bed1ab41a296f8ccccc47d7c06ab03de2018b5.zip
Diffstat (limited to 'src/core/hle/kernel/client_session.cpp')
-rw-r--r--src/core/hle/kernel/client_session.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/client_session.cpp b/src/core/hle/kernel/client_session.cpp
index e230f365a..13c55abe4 100644
--- a/src/core/hle/kernel/client_session.cpp
+++ b/src/core/hle/kernel/client_session.cpp
@@ -38,8 +38,7 @@ ResultVal<std::shared_ptr<ClientSession>> ClientSession::Create(KernelCore& kern
return MakeResult(std::move(client_session));
}
-ResultCode ClientSession::SendSyncRequest(std::shared_ptr<KThread> thread,
- Core::Memory::Memory& memory,
+ResultCode ClientSession::SendSyncRequest(KThread* thread, Core::Memory::Memory& memory,
Core::Timing::CoreTiming& core_timing) {
// Keep ServerSession alive until we're done working with it.
if (!parent->Server()) {