mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
DiscIO: Implement functions to lookup tickets
These two functions load either a signed ticket or a raw ticket from the emulated NAND. The ticket signature skip is refactored out of the ticket writing in order to be usable by the raw ticket reading function.
This commit is contained in:
@ -22,7 +22,9 @@ namespace DiscIO
|
||||
{
|
||||
enum class Region;
|
||||
|
||||
bool AddTicket(const std::vector<u8>& ticket);
|
||||
bool AddTicket(const std::vector<u8>& signed_ticket);
|
||||
std::vector<u8> FindSignedTicket(u64 title_id);
|
||||
std::vector<u8> FindTicket(u64 title_id);
|
||||
|
||||
class CNANDContentData
|
||||
{
|
||||
|
Reference in New Issue
Block a user