mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-13 11:39:09 +00:00
DolphinQt: Make scrubbing configurable in convert dialog
This commit is contained in:
parent
6ffcbcee70
commit
acd00723ad
4 changed files with 50 additions and 14 deletions
|
@ -90,6 +90,7 @@ public:
|
|||
u64 GetFileSize() const { return m_file_size; }
|
||||
u64 GetVolumeSize() const { return m_volume_size; }
|
||||
bool IsVolumeSizeAccurate() const { return m_volume_size_is_accurate; }
|
||||
bool IsDatelDisc() const { return m_is_datel_disc; }
|
||||
const GameBanner& GetBannerImage() const;
|
||||
const GameCover& GetCoverImage() const;
|
||||
void DoState(PointerWrap& p);
|
||||
|
@ -126,6 +127,7 @@ private:
|
|||
u64 m_file_size{};
|
||||
u64 m_volume_size{};
|
||||
bool m_volume_size_is_accurate{};
|
||||
bool m_is_datel_disc{};
|
||||
|
||||
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