mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 11:17:57 -05:00
yuzu_tester: Silence type conversion warning
This commit is contained in:
@ -53,7 +53,7 @@ private:
|
|||||||
|
|
||||||
IPC::ResponseBuilder rb{ctx, 3};
|
IPC::ResponseBuilder rb{ctx, 3};
|
||||||
rb.Push(RESULT_SUCCESS);
|
rb.Push(RESULT_SUCCESS);
|
||||||
rb.Push<u32>(write_size);
|
rb.Push<u32>(static_cast<u32>(write_size));
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartIndividual(Kernel::HLERequestContext& ctx) {
|
void StartIndividual(Kernel::HLERequestContext& ctx) {
|
||||||
|
Reference in New Issue
Block a user