mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +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
|
@ -86,6 +86,9 @@ public:
|
|||
DiscIO::Country GetCountry() const { return m_country; }
|
||||
DiscIO::Platform GetPlatform() const { return m_platform; }
|
||||
DiscIO::BlobType GetBlobType() const { return m_blob_type; }
|
||||
u64 GetBlockSize() const { return m_block_size; }
|
||||
const std::string& GetCompressionMethod() const { return m_compression_method; }
|
||||
bool ShouldShowFileFormatDetails() const;
|
||||
const std::string& GetApploaderDate() const { return m_apploader_date; }
|
||||
u64 GetFileSize() const { return m_file_size; }
|
||||
u64 GetVolumeSize() const { return m_volume_size; }
|
||||
|
@ -144,6 +147,8 @@ private:
|
|||
DiscIO::Country m_country{DiscIO::Country::Unknown};
|
||||
DiscIO::Platform m_platform{};
|
||||
DiscIO::BlobType m_blob_type{};
|
||||
u64 m_block_size{};
|
||||
std::string m_compression_method{};
|
||||
u16 m_revision{};
|
||||
u8 m_disc_number{};
|
||||
std::string m_apploader_date;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue