mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-29 05:31:40 +00:00
DolphinWX: Use title ID from ISOFile when possible
This skips creating volume objects, which can take a while.
This commit is contained in:
parent
c36d24a851
commit
71d105e545
4 changed files with 10 additions and 30 deletions
|
@ -46,6 +46,7 @@ public:
|
|||
std::string GetCompany() const { return m_company; }
|
||||
u16 GetRevision() const { return m_Revision; }
|
||||
const std::string& GetGameID() const { return m_game_id; }
|
||||
u64 GetTitleID() const { return m_title_id; }
|
||||
const std::string GetWiiFSPath() const;
|
||||
DiscIO::Region GetRegion() const { return m_region; }
|
||||
DiscIO::Country GetCountry() const { return m_Country; }
|
||||
|
@ -70,7 +71,7 @@ private:
|
|||
std::string m_company;
|
||||
|
||||
std::string m_game_id;
|
||||
u64 m_title_id;
|
||||
u64 m_title_id = 0;
|
||||
|
||||
std::string m_issues;
|
||||
int m_emu_state;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue