소스 검색

hle: kernel: KServerSession: Use ASSERT_MSG where appropriate.

bunnei 5 년 전
부모
커밋
9db569b2d9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/hle/kernel/k_server_session.cpp

+ 1 - 1
src/core/hle/kernel/k_server_session.cpp

@@ -123,7 +123,7 @@ ResultCode KServerSession::QueueSyncRequest(KThread* thread, Core::Memory::Memor
         strong_ptr->QueueSyncRequest(*parent, std::move(context));
         return ResultSuccess;
     } else {
-        ASSERT(false, "strong_ptr was nullptr!");
+        ASSERT_MSG(false, "strong_ptr was nullptr!");
     }
 
     return ResultSuccess;