diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/svc_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc_common.h b/src/core/hle/kernel/svc_common.h index 8a8f347b5..60ea2c405 100644 --- a/src/core/hle/kernel/svc_common.h +++ b/src/core/hle/kernel/svc_common.h | |||
| @@ -22,7 +22,7 @@ enum PseudoHandle : Handle { | |||
| 22 | CurrentProcess = 0xFFFF8001, | 22 | CurrentProcess = 0xFFFF8001, |
| 23 | }; | 23 | }; |
| 24 | 24 | ||
| 25 | constexpr bool IsPseudoHandle(const Handle& handle) { | 25 | constexpr bool IsPseudoHandle(Handle handle) { |
| 26 | return handle == PseudoHandle::CurrentProcess || handle == PseudoHandle::CurrentThread; | 26 | return handle == PseudoHandle::CurrentProcess || handle == PseudoHandle::CurrentThread; |
| 27 | } | 27 | } |
| 28 | 28 | ||