소스 검색

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