mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
DolphinQt: Turn the compress/decompress action into a dialog
This commit is contained in:
parent
42f6913bcc
commit
dae2c14f7f
9 changed files with 283 additions and 195 deletions
|
@ -89,6 +89,7 @@ public:
|
|||
const std::string& GetApploaderDate() const { return m_apploader_date; }
|
||||
u64 GetFileSize() const { return m_file_size; }
|
||||
u64 GetVolumeSize() const { return m_volume_size; }
|
||||
bool IsVolumeSizeAccurate() const { return m_volume_size_is_accurate; }
|
||||
const GameBanner& GetBannerImage() const;
|
||||
const GameCover& GetCoverImage() const;
|
||||
void DoState(PointerWrap& p);
|
||||
|
@ -124,6 +125,7 @@ private:
|
|||
|
||||
u64 m_file_size{};
|
||||
u64 m_volume_size{};
|
||||
bool m_volume_size_is_accurate{};
|
||||
|
||||
std::map<DiscIO::Language, std::string> m_short_names;
|
||||
std::map<DiscIO::Language, std::string> m_long_names;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue