Merge pull request #7815 from JosJuice/elf-dol-size

Don't show asterisk next to DOL/ELF size in game list
This commit is contained in:
Tilka 2019-02-23 15:46:03 +00:00 committed by GitHub
commit 83ff3aa691
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ GameFile::GameFile(const std::string& path)
if (!IsValid() && IsElfOrDol())
{
m_valid = true;
m_file_size = File::GetSize(m_file_path);
m_file_size = m_volume_size = File::GetSize(m_file_path);
m_platform = DiscIO::Platform::ELFOrDOL;
m_blob_type = DiscIO::BlobType::DIRECTORY;
}