Forward "raw" reads of GC discs to the normal read function, since they are not encrypted in the first place.

This commit is contained in:
Shawn Hoffman 2012-03-22 23:04:13 -07:00
parent 9c9e593479
commit fab037446c
1 changed files with 2 additions and 2 deletions

View File

@ -43,9 +43,9 @@ bool CVolumeGC::Read(u64 _Offset, u64 _Length, u8* _pBuffer) const
return m_pReader->Read(_Offset, _Length, _pBuffer);
}
bool CVolumeGC::RAWRead( u64 _Offset, u64 _Length, u8* _pBuffer ) const
bool CVolumeGC::RAWRead(u64 _Offset, u64 _Length, u8* _pBuffer) const
{
return false;
return Read(_Offset, _Length, _pBuffer);
}
std::string CVolumeGC::GetUniqueID() const