Skip to content
Permalink
Browse files
Merge pull request #8573 from JosJuice/ciso-size
DiscIO: Fix CISOFileReader::GetDataSize()
  • Loading branch information
delroth committed Jan 22, 2020
2 parents f0669f5 + 956c63e commit ea9b963
Showing 1 changed file with 1 addition and 1 deletion.
@@ -39,7 +39,7 @@ std::unique_ptr<CISOFileReader> CISOFileReader::Create(File::IOFile file)

u64 CISOFileReader::GetDataSize() const
{
return CISO_MAP_SIZE * m_block_size;
return static_cast<u64>(CISO_MAP_SIZE) * m_block_size;
}

u64 CISOFileReader::GetRawSize() const

0 comments on commit ea9b963

Please sign in to comment.