summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_session.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-06 23:29:32 +0100
committerLiam <byteslice@airmail.cc>2023-12-06 23:33:00 +0100
commit40bb176c396b7af6ca50d2e26561cbb20d2e40d1 (patch)
tree2c2ed0803aee8dedecc5eaa7d1d56490b93d4665 /src/core/hle/kernel/k_session.h
parentMerge pull request #12236 from liamwhite/cpu-refactor (diff)
downloadyuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.gz
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.bz2
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.lz
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.xz
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.tar.zst
yuzu-40bb176c396b7af6ca50d2e26561cbb20d2e40d1.zip
Diffstat (limited to 'src/core/hle/kernel/k_session.h')
-rw-r--r--src/core/hle/kernel/k_session.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_session.h b/src/core/hle/kernel/k_session.h
index f69bab088..3f4dd5989 100644
--- a/src/core/hle/kernel/k_session.h
+++ b/src/core/hle/kernel/k_session.h
@@ -46,6 +46,10 @@ public:
return this->GetState() != State::Normal;
}
+ Result OnRequest(KSessionRequest* request) {
+ R_RETURN(m_server.OnRequest(request));
+ }
+
KClientSession& GetClientSession() {
return m_client;
}