diff options
| author | 2020-06-22 22:54:09 -0400 | |
|---|---|---|
| committer | 2020-06-22 22:56:15 -0400 | |
| commit | b8798a995bd8aaefc0d21577c9d129e19b39fb15 (patch) | |
| tree | 7ae4c23b836c63cce4175dbdd303bb05f2a79dd3 | |
| parent | lm: Silence no return value warning (diff) | |
| download | yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.tar.gz yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.tar.xz yuzu-b8798a995bd8aaefc0d21577c9d129e19b39fb15.zip | |
yuzu_tester: Silence type conversion warning
| -rw-r--r-- | src/yuzu_tester/service/yuzutest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_tester/service/yuzutest.cpp b/src/yuzu_tester/service/yuzutest.cpp index 85d3f436b..2d3f6e3a7 100644 --- a/src/yuzu_tester/service/yuzutest.cpp +++ b/src/yuzu_tester/service/yuzutest.cpp | |||
| @@ -53,7 +53,7 @@ private: | |||
| 53 | 53 | ||
| 54 | IPC::ResponseBuilder rb{ctx, 3}; | 54 | IPC::ResponseBuilder rb{ctx, 3}; |
| 55 | rb.Push(RESULT_SUCCESS); | 55 | rb.Push(RESULT_SUCCESS); |
| 56 | rb.Push<u32>(write_size); | 56 | rb.Push<u32>(static_cast<u32>(write_size)); |
| 57 | } | 57 | } |
| 58 | 58 | ||
| 59 | void StartIndividual(Kernel::HLERequestContext& ctx) { | 59 | void StartIndividual(Kernel::HLERequestContext& ctx) { |