mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
Show file format details in game properties
This commit is contained in:
parent
9982251899
commit
d494e0230c
26 changed files with 342 additions and 17 deletions
|
@ -54,6 +54,11 @@ bool VolumeFileBlobReader::HasFastRandomAccessInBlock() const
|
|||
return m_volume.GetBlobReader().HasFastRandomAccessInBlock();
|
||||
}
|
||||
|
||||
std::string VolumeFileBlobReader::GetCompressionMethod() const
|
||||
{
|
||||
return m_volume.GetBlobReader().GetCompressionMethod();
|
||||
}
|
||||
|
||||
bool VolumeFileBlobReader::Read(u64 offset, u64 length, u8* out_ptr)
|
||||
{
|
||||
if (offset + length > m_file_info->GetSize())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue