mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Fixed split WBFS file size display. (probably)
Fixed issue 6222.
This commit is contained in:
@ -230,6 +230,18 @@ u64 CVolumeWiiCrypted::GetSize() const
|
||||
}
|
||||
}
|
||||
|
||||
u64 CVolumeWiiCrypted::GetRawSize() const
|
||||
{
|
||||
if (m_pReader)
|
||||
{
|
||||
return m_pReader->GetRawSize();
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
bool CVolumeWiiCrypted::CheckIntegrity() const
|
||||
{
|
||||
// Get partition data size
|
||||
|
Reference in New Issue
Block a user