Skip to content

Commit

Permalink
Don't show asterisk next to DOL/ELF size in game list
Browse files Browse the repository at this point in the history
  • Loading branch information
JosJuice committed Feb 23, 2019
1 parent 286aafd commit 5ace78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/UICommon/GameFile.cpp
Expand Up @@ -147,7 +147,7 @@ GameFile::GameFile(const std::string& path)
if (!IsValid() && IsElfOrDol()) if (!IsValid() && IsElfOrDol())
{ {
m_valid = true; 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_platform = DiscIO::Platform::ELFOrDOL;
m_blob_type = DiscIO::BlobType::DIRECTORY; m_blob_type = DiscIO::BlobType::DIRECTORY;
} }
Expand Down

0 comments on commit 5ace78b

Please sign in to comment.