summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-06-22 22:54:09 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-06-22 22:56:15 -0400
commitb8798a995bd8aaefc0d21577c9d129e19b39fb15 (patch)
tree7ae4c23b836c63cce4175dbdd303bb05f2a79dd3
parent45dac6bc5cce693cf7affdfaffff433be8acd67f (diff)
yuzu_tester: Silence type conversion warning
-rw-r--r--src/yuzu_tester/service/yuzutest.cpp2
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:
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) {