소스 검색

yuzu_tester: Silence type conversion warning

Morph 6 년 전
부모
커밋
b8798a995b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/yuzu_tester/service/yuzutest.cpp

+ 1 - 1
src/yuzu_tester/service/yuzutest.cpp

@@ -53,7 +53,7 @@ private:
 
         IPC::ResponseBuilder rb{ctx, 3};
         rb.Push(RESULT_SUCCESS);
-        rb.Push<u32>(write_size);
+        rb.Push<u32>(static_cast<u32>(write_size));
     }
 
     void StartIndividual(Kernel::HLERequestContext& ctx) {