From 885e6690c58734aed5f8ce242f212149b059078f Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Wed, 22 Sep 2021 01:30:08 +0200 Subject: [PATCH] DiscIO/DirectoryBlob: Add explanations for DiscContent members. --- Source/Core/DiscIO/DirectoryBlob.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Core/DiscIO/DirectoryBlob.h b/Source/Core/DiscIO/DirectoryBlob.h index 4281c7159c..93679045dc 100644 --- a/Source/Core/DiscIO/DirectoryBlob.h +++ b/Source/Core/DiscIO/DirectoryBlob.h @@ -60,8 +60,13 @@ public: bool operator>=(const DiscContent& other) const { return !(*this < other); } private: + // Position of this content chunk within its parent DiscContentContainer. u64 m_offset; + + // Number of bytes this content chunk takes up. u64 m_size = 0; + + // Where and how to find the data for this content chunk. ContentSource m_content_source; };