mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
DirectoryBlob: Use DISCIO instead of DVDINTERFACE for logging
This commit is contained in:
@ -199,7 +199,7 @@ bool DirectoryBlobReader::ReadInternal(u64 offset, u64 length, u8* buffer,
|
|||||||
|
|
||||||
while (it != contents.end() && length > 0)
|
while (it != contents.end() && length > 0)
|
||||||
{
|
{
|
||||||
_dbg_assert_(DVDINTERFACE, it->GetOffset() <= offset);
|
_dbg_assert_(DISCIO, it->GetOffset() <= offset);
|
||||||
if (!it->Read(&offset, &length, &buffer))
|
if (!it->Read(&offset, &length, &buffer))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@ -207,7 +207,7 @@ bool DirectoryBlobReader::ReadInternal(u64 offset, u64 length, u8* buffer,
|
|||||||
|
|
||||||
if (it != contents.end())
|
if (it != contents.end())
|
||||||
{
|
{
|
||||||
_dbg_assert_(DVDINTERFACE, it->GetOffset() >= offset);
|
_dbg_assert_(DISCIO, it->GetOffset() >= offset);
|
||||||
PadToAddress(it->GetOffset(), &offset, &length, &buffer);
|
PadToAddress(it->GetOffset(), &offset, &length, &buffer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user