瀏覽代碼

fixup! hle: kernel: Migrate to KHandleTable.

bunnei 5 年之前
父節點
當前提交
703d7aaab6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/core/hle/kernel/svc_common.h

+ 1 - 1
src/core/hle/kernel/svc_common.h

@@ -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;
 }