mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
DiscIO: Add a way to get blob type
This commit is contained in:
parent
34c020352f
commit
be7e0554d2
19 changed files with 65 additions and 37 deletions
|
@ -126,9 +126,9 @@ std::map<IVolume::ELanguage, std::string> CVolumeWAD::GetNames(bool prefer_long)
|
|||
return ReadWiiNames(name_data);
|
||||
}
|
||||
|
||||
bool CVolumeWAD::IsCompressed() const
|
||||
BlobType CVolumeWAD::GetBlobType() const
|
||||
{
|
||||
return m_pReader ? m_pReader->IsCompressed() : false;
|
||||
return m_pReader ? m_pReader->GetBlobType() : BlobType::PLAIN;
|
||||
}
|
||||
|
||||
u64 CVolumeWAD::GetSize() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue