mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 22:58:50 +00:00
Merge pull request #8573 from JosJuice/ciso-size
DiscIO: Fix CISOFileReader::GetDataSize()
This commit is contained in:
commit
ea9b96370d
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ std::unique_ptr<CISOFileReader> CISOFileReader::Create(File::IOFile file)
|
||||||
|
|
||||||
u64 CISOFileReader::GetDataSize() const
|
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
|
u64 CISOFileReader::GetRawSize() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue