summaryrefslogtreecommitdiff
path: root/src/yuzu_tester/service/yuzutest.cpp
diff options
context:
space:
mode:
authorGravatar Rodrigo Locatti2020-06-23 00:39:04 -0300
committerGravatar GitHub2020-06-23 00:39:04 -0300
commit2ce3aedda8981bdcb22f8d54957bee2ca843e1b4 (patch)
tree7ae4c23b836c63cce4175dbdd303bb05f2a79dd3 /src/yuzu_tester/service/yuzutest.cpp
parentaccount: Update function tables and add missing classes (#4145) (diff)
parentyuzu_tester: Silence type conversion warning (diff)
downloadyuzu-2ce3aedda8981bdcb22f8d54957bee2ca843e1b4.tar.gz
yuzu-2ce3aedda8981bdcb22f8d54957bee2ca843e1b4.tar.xz
yuzu-2ce3aedda8981bdcb22f8d54957bee2ca843e1b4.zip
Merge pull request #4148 from Morph1984/silence-warnings
Silence miscellaneous warnings
Diffstat (limited to 'src/yuzu_tester/service/yuzutest.cpp')
-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:
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) {