diff options
Diffstat (limited to 'Source/Core/DiscIO/VolumeGC.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeGC.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp index 9ecb8bb266..74b612f647 100644 --- a/Source/Core/DiscIO/VolumeGC.cpp +++ b/Source/Core/DiscIO/VolumeGC.cpp @@ -188,6 +188,11 @@ u64 VolumeGC::GetRawSize() const return m_reader->GetRawSize(); } +const BlobReader& VolumeGC::GetBlobReader() const +{ + return *m_reader; +} + std::optional<u8> VolumeGC::GetDiscNumber(const Partition& partition) const { return ReadSwapped<u8>(6, partition); |
