mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Show file format details in game properties
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user