diff options
author | mailwl <mailwl@gmail.com> | 2016-05-31 10:05:31 +0300 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2016-05-31 10:06:00 +0300 |
commit | e85b22320ab339a3f57f829606cf47eabc8f2b04 (patch) | |
tree | db7e200c3869639a8cce0da7dca2c8e3757d9ec1 /src/core/hle/kernel | |
parent | eea08f281d96791593f5f9fc59bec6e64fd7fc84 (diff) |
Fix parameter name in EnableNotification
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/session.h | 4 |
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() { return 0x20; } +constexpr u32 TransferHandleDesc() { + return 0x20; +} + constexpr u32 StaticBufferDesc(u32 size, unsigned int buffer_id) { return 0x2 | (size << 14) | ((buffer_id & 0xF) << 10); } |