mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 18:50:30 +00:00
IOS/ESFormats: Use SignedBlobReader for TMDs and tickets
This commit is contained in:
parent
2ec04675c9
commit
6c3069be97
10 changed files with 24 additions and 86 deletions
|
@ -27,8 +27,8 @@ bool InstallWAD(const std::string& wad_path)
|
|||
const auto es = ios.GetES();
|
||||
|
||||
IOS::HLE::Device::ES::Context context;
|
||||
if (es->ImportTicket(wad.GetTicket().GetRawTicket()) < 0 ||
|
||||
es->ImportTitleInit(context, tmd.GetRawTMD()) < 0)
|
||||
if (es->ImportTicket(wad.GetTicket().GetBytes()) < 0 ||
|
||||
es->ImportTitleInit(context, tmd.GetBytes()) < 0)
|
||||
{
|
||||
PanicAlertT("WAD installation failed: Could not initialise title import.");
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue