mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Merge pull request #1682 from JosJuice/volumehandler-return
VolumeHandler: Return success value
This commit is contained in:
@@ -67,20 +67,16 @@ u32 Read32(u64 _Offset)
|
||||
bool ReadToPtr(u8* ptr, u64 _dwOffset, u64 _dwLength)
|
||||
{
|
||||
if (g_pVolume != nullptr && ptr)
|
||||
{
|
||||
g_pVolume->Read(_dwOffset, _dwLength, ptr);
|
||||
return true;
|
||||
}
|
||||
return g_pVolume->Read(_dwOffset, _dwLength, ptr);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool RAWReadToPtr( u8* ptr, u64 _dwOffset, u64 _dwLength )
|
||||
bool RAWReadToPtr(u8* ptr, u64 _dwOffset, u64 _dwLength)
|
||||
{
|
||||
if (g_pVolume != nullptr && ptr)
|
||||
{
|
||||
g_pVolume->RAWRead(_dwOffset, _dwLength, ptr);
|
||||
return true;
|
||||
}
|
||||
return g_pVolume->RAWRead(_dwOffset, _dwLength, ptr);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user