From af41275c8037e6f975c98faa82c9fb074658f9bd Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 21 Jan 2023 19:49:15 +0800 Subject: [PATCH] Add comments for the 3 reader streams in NcaProcess::sPartitionInfo --- src/NcaProcess.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NcaProcess.h b/src/NcaProcess.h index 4527968..f10d9d4 100644 --- a/src/NcaProcess.h +++ b/src/NcaProcess.h @@ -96,9 +96,9 @@ private: // raw partition data struct sPartitionInfo { - std::shared_ptr raw_reader; - std::shared_ptr decrypt_reader; - std::shared_ptr reader; + std::shared_ptr raw_reader; // raw unprocessed partition stream + std::shared_ptr decrypt_reader; // partition stream with transparent decryption + std::shared_ptr reader; // partition stream with transparent decryption & hash layer processing tc::io::VirtualFileSystem::FileSystemSnapshot fs_snapshot; std::shared_ptr fs_reader; std::string fail_reason;