mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 17:26:40 +00:00
Only attempt to import common tickets. (#1886)
This commit is contained in:
parent
3c09abf9e6
commit
5117b21c52
1 changed files with 4 additions and 1 deletions
|
@ -269,10 +269,13 @@ namespace Ryujinx.HLE.FileSystem
|
||||||
{
|
{
|
||||||
Ticket ticket = new Ticket(ticketFile.AsStream());
|
Ticket ticket = new Ticket(ticketFile.AsStream());
|
||||||
|
|
||||||
|
if (ticket.TitleKeyType == TitleKeyType.Common)
|
||||||
|
{
|
||||||
KeySet.ExternalKeySet.Add(new RightsId(ticket.RightsId), new AccessKey(ticket.GetTitleKey(KeySet)));
|
KeySet.ExternalKeySet.Add(new RightsId(ticket.RightsId), new AccessKey(ticket.GetTitleKey(KeySet)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void Unload()
|
public void Unload()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue