Browse Source

yuzu_tester: Silence type conversion warning

pull/15/merge
Morph 6 years ago
parent
commit
b8798a995b
  1. 2
      src/yuzu_tester/service/yuzutest.cpp

2
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) {

Loading…
Cancel
Save