diff options
| author | 2016-05-31 10:05:31 +0300 | |
|---|---|---|
| committer | 2016-05-31 10:06:00 +0300 | |
| commit | e85b22320ab339a3f57f829606cf47eabc8f2b04 (patch) | |
| tree | db7e200c3869639a8cce0da7dca2c8e3757d9ec1 /src/core/hle/kernel/session.h | |
| parent | Fix mistakes, add output header codes (diff) | |
| download | yuzu-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.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() { | |||
| 32 | return 0x20; | 32 | return 0x20; |
| 33 | } | 33 | } |
| 34 | 34 | ||
| 35 | constexpr u32 TransferHandleDesc() { | ||
| 36 | return 0x20; | ||
| 37 | } | ||
| 38 | |||
| 35 | constexpr u32 StaticBufferDesc(u32 size, unsigned int buffer_id) { | 39 | constexpr 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 | } |