mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Move GetCompany() to ISOFile.h/GameFile.h
For consistency with the other Get methods.
This commit is contained in:
@ -247,11 +247,6 @@ QString GameFile::CreateCacheFilename()
|
||||
return fullname;
|
||||
}
|
||||
|
||||
QString GameFile::GetCompany() const
|
||||
{
|
||||
return m_company;
|
||||
}
|
||||
|
||||
QString GameFile::GetDescription(DiscIO::IVolume::ELanguage language) const
|
||||
{
|
||||
return GetLanguageString(language, m_descriptions);
|
||||
|
@ -26,7 +26,7 @@ public:
|
||||
QString GetName(bool prefer_long) const;
|
||||
QString GetDescription(DiscIO::IVolume::ELanguage language) const;
|
||||
QString GetDescription() const;
|
||||
QString GetCompany() const;
|
||||
QString GetCompany() const { return m_company; }
|
||||
u16 GetRevision() const { return m_revision; }
|
||||
const QString GetUniqueID() const { return m_unique_id; }
|
||||
const QString GetWiiFSPath() const;
|
||||
|
Reference in New Issue
Block a user