mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 01:46:41 +00:00
Import DLC title key from ticket when loading into content manager (#1318)
This commit is contained in:
parent
b312c82a2c
commit
4472196b48
1 changed files with 6 additions and 0 deletions
|
@ -249,6 +249,12 @@ namespace Ryujinx.HLE.FileSystem.Content
|
|||
else
|
||||
{
|
||||
Logger.PrintInfo(LogClass.Application, $"Found AddOnContent with TitleId {titleId:X16}");
|
||||
|
||||
using (FileStream fileStream = File.OpenRead(containerPath))
|
||||
using (PartitionFileSystem pfs = new PartitionFileSystem(fileStream.AsStorage()))
|
||||
{
|
||||
_virtualFileSystem.ImportTickets(pfs);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue