mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 05:17:58 -05:00
fixup! hle: kernel: Migrate to KHandleTable.
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user