summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/session.h
diff options
context:
space:
mode:
authorGravatar mailwl2016-05-31 10:05:31 +0300
committerGravatar mailwl2016-05-31 10:06:00 +0300
commite85b22320ab339a3f57f829606cf47eabc8f2b04 (patch)
treedb7e200c3869639a8cce0da7dca2c8e3757d9ec1 /src/core/hle/kernel/session.h
parentFix mistakes, add output header codes (diff)
downloadyuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.tar.gz
yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.tar.xz
yuzu-e85b22320ab339a3f57f829606cf47eabc8f2b04.zip
Fix parameter name in EnableNotification
Diffstat (limited to 'src/core/hle/kernel/session.h')
-rw-r--r--src/core/hle/kernel/session.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/session.h b/src/core/hle/kernel/session.h
index 6ddaf970e..26b086f87 100644
--- a/src/core/hle/kernel/session.h
+++ b/src/core/hle/kernel/session.h
@@ -32,6 +32,10 @@ constexpr u32 CallingPidDesc() {
32 return 0x20; 32 return 0x20;
33} 33}
34 34
35constexpr u32 TransferHandleDesc() {
36 return 0x20;
37}
38
35constexpr u32 StaticBufferDesc(u32 size, unsigned int buffer_id) { 39constexpr u32 StaticBufferDesc(u32 size, unsigned int buffer_id) {
36 return 0x2 | (size << 14) | ((buffer_id & 0xF) << 10); 40 return 0x2 | (size << 14) | ((buffer_id & 0xF) << 10);
37} 41}