Browse Source

fixup! hle: kernel: Migrate to KHandleTable.

nce_cpp
bunnei 5 years ago
parent
commit
a50cc0c3f8
  1. 2
      src/core/hle/kernel/svc_common.h

2
src/core/hle/kernel/svc_common.h

@ -22,7 +22,7 @@ enum PseudoHandle : Handle {
CurrentProcess = 0xFFFF8001, CurrentProcess = 0xFFFF8001,
}; };
constexpr bool IsPseudoHandle(const Handle& handle) {
constexpr bool IsPseudoHandle(Handle handle) {
return handle == PseudoHandle::CurrentProcess || handle == PseudoHandle::CurrentThread; return handle == PseudoHandle::CurrentProcess || handle == PseudoHandle::CurrentThread;
} }

Loading…
Cancel
Save