mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
Add comments for the 3 reader streams in NcaProcess::sPartitionInfo
This commit is contained in:
parent
ccd296d144
commit
af41275c80
1 changed files with 3 additions and 3 deletions
|
@ -96,9 +96,9 @@ private:
|
|||
// raw partition data
|
||||
struct sPartitionInfo
|
||||
{
|
||||
std::shared_ptr<tc::io::IStream> raw_reader;
|
||||
std::shared_ptr<tc::io::IStream> decrypt_reader;
|
||||
std::shared_ptr<tc::io::IStream> reader;
|
||||
std::shared_ptr<tc::io::IStream> raw_reader; // raw unprocessed partition stream
|
||||
std::shared_ptr<tc::io::IStream> decrypt_reader; // partition stream with transparent decryption
|
||||
std::shared_ptr<tc::io::IStream> reader; // partition stream with transparent decryption & hash layer processing
|
||||
tc::io::VirtualFileSystem::FileSystemSnapshot fs_snapshot;
|
||||
std::shared_ptr<tc::io::IFileSystem> fs_reader;
|
||||
std::string fail_reason;
|
||||
|
|
Loading…
Reference in a new issue