mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DiscIO: Add a way to get blob type
This commit is contained in:
@ -169,9 +169,9 @@ std::string CVolumeGC::GetApploaderDate() const
|
||||
return DecodeString(date);
|
||||
}
|
||||
|
||||
bool CVolumeGC::IsCompressed() const
|
||||
BlobType CVolumeGC::GetBlobType() const
|
||||
{
|
||||
return m_pReader ? m_pReader->IsCompressed() : false;
|
||||
return m_pReader ? m_pReader->GetBlobType() : BlobType::PLAIN;
|
||||
}
|
||||
|
||||
u64 CVolumeGC::GetSize() const
|
||||
|
Reference in New Issue
Block a user