From 5ace78bf2028c86d876d76f797cce59e9411f7c1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 23 Feb 2019 16:17:39 +0100 Subject: [PATCH] Don't show asterisk next to DOL/ELF size in game list --- Source/Core/UICommon/GameFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/UICommon/GameFile.cpp b/Source/Core/UICommon/GameFile.cpp index 147a717508..d7cc55e2b7 100644 --- a/Source/Core/UICommon/GameFile.cpp +++ b/Source/Core/UICommon/GameFile.cpp @@ -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; }