Skip to content
Permalink
Browse files
Merge pull request #7815 from JosJuice/elf-dol-size
Don't show asterisk next to DOL/ELF size in game list
  • Loading branch information
Tilka committed Feb 23, 2019
2 parents 3426c98 + 5ace78b commit 83ff3aa
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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;
}

0 comments on commit 83ff3aa

Please sign in to comment.