mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Don't read from disk when checking volume type
Should be faster than relying on the OS to cache the magic words. Also gets rid of the odd recursive call in VolumeDirectory.
This commit is contained in:
@ -227,6 +227,11 @@ std::string CVolumeWiiCrypted::GetApploaderDate() const
|
||||
return date;
|
||||
}
|
||||
|
||||
bool CVolumeWiiCrypted::IsWiiDisc() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
u64 CVolumeWiiCrypted::GetSize() const
|
||||
{
|
||||
if (m_pReader)
|
||||
|
Reference in New Issue
Block a user