mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-09 04:10:05 +00:00
Fix compilation error
This commit is contained in:
parent
1cfd63b140
commit
fb70f4bb6a
1 changed files with 3 additions and 3 deletions
|
@ -1046,7 +1046,7 @@ void Module::Interface::ListDLCContentInfos(Kernel::HLERequestContext& ctx) {
|
||||||
}
|
}
|
||||||
IPC::RequestBuilder rb(ctx, 2, 0);
|
IPC::RequestBuilder rb(ctx, 2, 0);
|
||||||
rb.Push(async_data->res);
|
rb.Push(async_data->res);
|
||||||
rb.Push(async_data->out.size() / sizeof(ContentInfo));
|
rb.Push<u32>(static_cast<u32>(async_data->out.size() / sizeof(ContentInfo)));
|
||||||
},
|
},
|
||||||
true);
|
true);
|
||||||
} else {
|
} else {
|
||||||
|
@ -1171,7 +1171,7 @@ void Module::Interface::GetProgramList(Kernel::HLERequestContext& ctx) {
|
||||||
|
|
||||||
IPC::RequestBuilder rb(ctx, 2, 0);
|
IPC::RequestBuilder rb(ctx, 2, 0);
|
||||||
rb.Push(async_data->res);
|
rb.Push(async_data->res);
|
||||||
rb.Push(async_data->out.size() / sizeof(u64));
|
rb.Push<u32>(static_cast<u32>(async_data->out.size() / sizeof(u64)));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
true);
|
true);
|
||||||
|
@ -1650,7 +1650,7 @@ void Module::Interface::ListDataTitleTicketInfos(Kernel::HLERequestContext& ctx)
|
||||||
}
|
}
|
||||||
IPC::RequestBuilder rb(ctx, 2, 0);
|
IPC::RequestBuilder rb(ctx, 2, 0);
|
||||||
rb.Push(async_data->res);
|
rb.Push(async_data->res);
|
||||||
rb.Push(async_data->out.size() / sizeof(TicketInfo));
|
rb.Push<u32>(static_cast<u32>(async_data->out.size() / sizeof(TicketInfo)));
|
||||||
},
|
},
|
||||||
true);
|
true);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue