fixup! hle: kernel: Migrate to KHandleTable.

This commit is contained in:
bunnei 2021-05-01 12:53:37 -07:00
parent 9beb239634
commit 703d7aaab6

View file

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