Skip to content
Permalink
Browse files
Merge pull request #8014 from JosJuice/getuniqueidentifier-language-i…
…ndependent

Make GameFile::GetUniqueIdentifier independent of language setting
  • Loading branch information
leoetlino committed May 1, 2019
2 parents 3f39aaf + 3bef561 commit ef88dd7
Showing 1 changed file with 6 additions and 1 deletion.
@@ -468,7 +468,12 @@ std::string GameFile::GetUniqueIdentifier() const
if (GetRevision() != 0)
info.push_back("Revision " + std::to_string(GetRevision()));

const std::string& name = GetName();
std::string name = GetLongName(DiscIO::Language::English);
if (name.empty())
{
// Use the file name as a fallback. Not necessarily consistent, but it's the best we have
name = m_file_name;
}

int disc_number = GetDiscNumber() + 1;

0 comments on commit ef88dd7

Please sign in to comment.